結果
| 問題 | No.601 Midpoint Erase |
| コンテスト | |
| ユーザー |
testestest
|
| 提出日時 | 2017-12-01 00:02:47 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 168 bytes |
| 記録 | |
| コンパイル時間 | 91 ms |
| コンパイル使用メモリ | 25,524 KB |
| 最終ジャッジ日時 | 2026-02-22 00:35:51 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class
1 | n,ans;
| ^
main.c:1:1: error: type defaults to 'int' in declaration of 'n' [-Wimplicit-int]
main.c:1:3: error: type defaults to 'int' in declaration of 'ans' [-Wimplicit-int]
1 | n,ans;
| ^~~
main.c:2:1: warning: data definition has no type or storage class
2 | a[2][2],x,y;
| ^
main.c:2:1: error: type defaults to 'int' in declaration of 'a' [-Wimplicit-int]
main.c:2:9: error: type defaults to 'int' in declaration of 'x' [-Wimplicit-int]
2 | a[2][2],x,y;
| ^
main.c:2:11: error: type defaults to 'int' in declaration of 'y' [-Wimplicit-int]
2 | a[2][2],x,y;
| ^
main.c:3:1: error: return type defaults to 'int' [-Wimplicit-int]
3 | main(){
| ^~~~
main.c: In function 'main':
main.c:4:9: error: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
4 | scanf("%d",&n);
| ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
+++ |+#include <stdio.h>
1 | n,ans;
main.c:4:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
4 | scanf("%d",&n);
| ^~~~~
main.c:4:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:9:9: error: implicit declaration of function 'puts' [-Wimplicit-function-declaration]
9 | puts((a[0][0]/2+a[0][1]/2+a[1][0]/2+a[1][1]/2)%2?"Alice":"Bob");
| ^~~~
main.c:9:9: note: include '<stdio.h>' or provide a declaration of 'puts'
ソースコード
n,ans;
a[2][2],x,y;
main(){
scanf("%d",&n);
while(n--){
scanf("%d%d",&x,&y);
a[x%2][y%2]++;
}
puts((a[0][0]/2+a[0][1]/2+a[1][0]/2+a[1][1]/2)%2?"Alice":"Bob");
}
testestest