当前位置:网站首页>Nanny level problem setting tutorial
Nanny level problem setting tutorial
2022-07-06 11:25:00 【%xiao Q】
There is a problem with the built-in recording screen ( You cannot record on separate screens ), Feature blog supplement , Video with blog , Better use
First step
After entering the backstage , Need to find Create Problem, Then point in
The second step
Then go back to the question recording interface
This is the question number , Be sure to fill in , And in the order of the question bank , It is also said in the video here
This is the title
This is the title description
This is the input description
This is the output description
This is the time limit and memory limit, and it is still difficult , The difficulty can be given according to the difficulty of the topic
This is the language chosen , It is suggested to select all
It's important , What kind of questions , Just give it a label
The following language restrictions , It is also recommended to choose all , You need to pay special attention here , Namely c and c ++ I have to delete something , Delete the same as above , Otherwise, you will report grammatical errors when doing questions
Here is the upload test point , The format is zip
The third step
Then there is the problem of making and testing pilot , Here you can use c Language file read in and output
// Sample generation
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <time.h>
const int N = 1e9, M = 1e4;
int main()
{
FILE *fp;
fp = fopen("1.in", "w"); // Generate multiple , Just change the prefix every time
srand((unsigned)time(0));
// In the middle, write the code of the data you want to generate
fclose(fp);
return 0;
}
// Output the answer to a file
#include <bits/stdc++.h>
using namespace std;
const int N = 1000010;
int a[N];
int main()
{
FILE *fp1, *fp2;
fp1 = fopen("2.in", "r");
fp2 = fopen("2.out", "w");
// It's about Ac Code
// from fp1 Read in , Output the answer to fp2 in ,
fclose(fp1); fclose(fp2);
return 0;
}
After writing this code , You just need to change the file name , Want to make 10 individual , Just change 10 Time , function 10 Time , Very fast
The first 4 Step
Finally, the file you generated will appear in the folder
Then compress them zip Upload the format
Finally, don't forget save
边栏推荐
猜你喜欢
How to build a new project for keil5mdk (with super detailed drawings)
Face recognition_ recognition
QT creator specifies dependencies
MySQL主从复制、读写分离
Why can't I use the @test annotation after introducing JUnit
Deoldify project problem - omp:error 15:initializing libiomp5md dll,but found libiomp5md. dll already initialized.
Integration test practice (1) theoretical basis
In the era of DFI dividends, can TGP become a new benchmark for future DFI?
Asp access Shaoxing tourism graduation design website
One click extraction of tables in PDF
随机推荐
软件测试与质量学习笔记3--白盒测试
Rhcsa certification exam exercise (configured on the first host)
Solution: log4j:warn please initialize the log4j system properly
DICOM: Overview
PyCharm中无法调用numpy,报错ModuleNotFoundError: No module named ‘numpy‘
Dotnet replaces asp Net core's underlying communication is the IPC Library of named pipes
Did you forget to register or load this tag 报错解决方法
数据库高级学习笔记--SQL语句
软件测试-面试题分享
Record a problem of raspberry pie DNS resolution failure
Test objects involved in safety test
Classes in C #
[AGC009D]Uninity
[recommended by bloggers] C # generate a good-looking QR code (with source code)
JDBC原理
Install mongdb tutorial and redis tutorial under Windows
解决安装Failed building wheel for pillow
数数字游戏
About string immutability
Image recognition - pyteseract TesseractNotFoundError: tesseract is not installed or it‘s not in your path