QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#168728 | #6418. Ah, It's Yesterday Once More | NOI_AK_ME | Compile Error | / | / | C | 474b | 2023-09-08 20:45:39 | 2023-09-08 20:45:40 |
Judging History
answer
main() {
puts("R(20 20
11101110111110111110
10011011001011001011
11101101101101101101
10110110110110110110
11011011011011011011
01101101101101101101
10110110110110110111
10011011011011011001
11101101101101101101
10110110110110110110
11011011011011011011
01101101101101101101
10110110110110110111
10011011011011011001
11101101101101101101
10110110110110110110
11011011011011011011
01101101101101101101
10110110100110100111
11100011111011111001)");
}
详细
answer.code:1:1: warning: return type defaults to ‘int’ [-Wimplicit-int] 1 | main() { | ^~~~ answer.code: In function ‘main’: answer.code:2:5: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration] 2 | puts("R(20 20 | ^~~~ answer.code:2:10: warning: missing terminating " character 2 | puts("R(20 20 | ^ answer.code:2:10: error: missing terminating " character 2 | puts("R(20 20 | ^~~~~~~~ answer.code:3:1: warning: integer constant is so large that it is unsigned 3 | 11101110111110111110 | ^~~~~~~~~~~~~~~~~~~~ answer.code:4:1: warning: integer constant is so large that it is unsigned 4 | 10011011001011001011 | ^~~~~~~~~~~~~~~~~~~~ answer.code:3:21: error: expected ‘)’ before numeric constant 3 | 11101110111110111110 | ^ | ) 4 | 10011011001011001011 | ~~~~~~~~~~~~~~~~~~~~ answer.code:5:1: warning: integer constant is so large that it is unsigned 5 | 11101101101101101101 | ^~~~~~~~~~~~~~~~~~~~ answer.code:6:1: warning: integer constant is so large that it is unsigned 6 | 10110110110110110110 | ^~~~~~~~~~~~~~~~~~~~ answer.code:7:1: warning: integer constant is so large that it is unsigned 7 | 11011011011011011011 | ^~~~~~~~~~~~~~~~~~~~ answer.code:9:1: warning: integer constant is so large that it is unsigned 9 | 10110110110110110111 | ^~~~~~~~~~~~~~~~~~~~ answer.code:10:1: warning: integer constant is so large that it is unsigned 10 | 10011011011011011001 | ^~~~~~~~~~~~~~~~~~~~ answer.code:11:1: warning: integer constant is so large that it is unsigned 11 | 11101101101101101101 | ^~~~~~~~~~~~~~~~~~~~ answer.code:12:1: warning: integer constant is so large that it is unsigned 12 | 10110110110110110110 | ^~~~~~~~~~~~~~~~~~~~ answer.code:13:1: warning: integer constant is so large that it is unsigned 13 | 11011011011011011011 | ^~~~~~~~~~~~~~~~~~~~ answer.code:15:1: warning: integer constant is so large that it is unsigned 15 | 10110110110110110111 | ^~~~~~~~~~~~~~~~~~~~ answer.code:16:1: warning: integer constant is so large that it is unsigned 16 | 10011011011011011001 | ^~~~~~~~~~~~~~~~~~~~ answer.code:17:1: warning: integer constant is so large that it is unsigned 17 | 11101101101101101101 | ^~~~~~~~~~~~~~~~~~~~ answer.code:18:1: warning: integer constant is so large that it is unsigned 18 | 10110110110110110110 | ^~~~~~~~~~~~~~~~~~~~ answer.code:19:1: warning: integer constant is so large that it is unsigned 19 | 11011011011011011011 | ^~~~~~~~~~~~~~~~~~~~ answer.code:21:1: warning: integer constant is so large that it is unsigned 21 | 10110110100110100111 | ^~~~~~~~~~~~~~~~~~~~ answer.code:22:1: warning: integer constant is so large that it is unsigned 22 | 11100011111011111001)"); | ^~~~~~~~~~~~~~~~~~~~ answer.code:3:1: warning: passing argument 1 of ‘puts’ makes pointer from integer without a cast [-Wint-conversion] 3 | 11101110111110111110 | ^~~~~~~~~~~~~~~~~~~~ | | | __int128 answer.code:3:1: note: expected ‘const char *’ but argument is of type ‘__int128’ answer.code:22:22: warning: missing terminating " character 22 | 11100011111011111001)"); | ^ answer.code:22:22: error: missing terminating " character 22 | 11100011111011111001)"); | ^~~ answer.code:22:22: error: expected ‘;’ before ‘}’ token 22 | 11100011111011111001)"); | ^ | ; 23 | } | ~