当前位置:网站首页>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
边栏推荐
- Learn winpwn (3) -- sEH from scratch
- 使用lambda在循环中传参时,参数总为同一个值
- Base de données Advanced Learning Notes - - SQL statements
- Ubuntu 20.04 安装 MySQL
- Why can't I use the @test annotation after introducing JUnit
- 02-项目实战之后台员工信息管理
- vs2019 第一个MFC应用程序
- Redis的基础使用
- Codeforces Round #771 (Div. 2)
- Solve the problem of installing failed building wheel for pilot
猜你喜欢
Swagger, Yapi interface management service_ SE
QT creator test
Picture coloring project - deoldify
Request object and response object analysis
引入了junit为什么还是用不了@Test注解
About string immutability
Software I2C based on Hal Library
AI benchmark V5 ranking
Solution: log4j:warn please initialize the log4j system properly
Integration test practice (1) theoretical basis
随机推荐
MySQL主從複制、讀寫分離
Solution: log4j:warn please initialize the log4j system properly
Ansible practical Series III_ Task common commands
图像识别问题 — pytesseract.TesseractNotFoundError: tesseract is not installed or it‘s not in your path
Django运行报错:Error loading MySQLdb module解决方法
Test objects involved in safety test
L2-001 紧急救援 (25 分)
安全测试涉及的测试对象
MySQL master-slave replication, read-write separation
解决安装Failed building wheel for pillow
自动机器学习框架介绍与使用(flaml、h2o)
MySQL与c语言连接(vs2019版)
[recommended by bloggers] C # generate a good-looking QR code (with source code)
Heating data in data lake?
When you open the browser, you will also open mango TV, Tiktok and other websites outside the home page
L2-006 树的遍历 (25 分)
图片上色项目 —— Deoldify
报错解决 —— io.UnsupportedOperation: can‘t do nonzero end-relative seeks
QT creator specify editor settings
Project practice - background employee information management (add, delete, modify, check, login and exit)