-
Notifications
You must be signed in to change notification settings - Fork 0
/
setting.yaml
113 lines (99 loc) · 2.15 KB
/
setting.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
contest_infomation:
title: "Contest Title"
start_time: "2023-01-01 00:00:00"
end_time: "2023-01-01 00:00:00"
problem:
- number: 1
title: "Problem Title"
score: 100
limit_execute_time: 10
limit_execute_memory: 256
description: "Problem Description"
limit_description:
- description: "Limitation Description1"
- description: "Limitation Description2"
- description: "Limitation Description3"
input_description: "Input Description"
output_description: "Output Description"
initial_code: |-
#include<stdio.h>
int main(void){
int a,b;
scanf("%d %d",&a,&b);
printf("%d\n",a+b);
return 0;
}
testcases:
- input: |-
1 2
output: |-
3
description: "Example 1"
- input: |-
5 6
output: |-
11
description: "Example 2"
secretcases:
- input: |-
2 2
output: |-
4
- input: |-
0 10
output: |-
10
- input: |-
22 2
output: |-
24
- number: 2
title: "Problem Title"
score: 100
limit_execute_time: 10
limit_execute_memory: 256
description: "Problem Description"
limit_description:
- description: "Limitation Description1"
- description: "Limitation Description2"
- description: "Limitation Description3"
input_description: "Input Description"
output_description: "Output Description"
initial_code: |-
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}
testcases:
- input: |-
1
2
output: |-
3
description: "Example 1"
- input: |-
1
2
output: |-
3
description: "Example 2"
secretcases:
- input: |-
1
2
output: |-
3
- input: |-
1
2
output: |-
3
- input: |-
1
2
output: |-
3