結果
| 問題 |
No.351 市松スライドパズル
|
| コンテスト | |
| ユーザー |
tails
|
| 提出日時 | 2016-03-11 23:18:25 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
AC
|
| 実行時間 | 128 ms / 2,000 ms |
| コード長 | 292 bytes |
| コンパイル時間 | 143 ms |
| コンパイル使用メモリ | 19,840 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-25 02:36:48 |
| 合計ジャッジ時間 | 2,667 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 17 |
コンパイルメッセージ
main.c:3:1: warning: data definition has no type or storage class
3 | x;y;
| ^
main.c:3:1: warning: type defaults to ‘int’ in declaration of ‘x’ [-Wimplicit-int]
main.c:3:3: warning: data definition has no type or storage class
3 | x;y;
| ^
main.c:3:3: warning: type defaults to ‘int’ in declaration of ‘y’ [-Wimplicit-int]
main.c:4:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
4 | main(w,h,n,i){
| ^~~~
main.c: In function ‘main’:
main.c:4:1: warning: type of ‘w’ defaults to ‘int’ [-Wimplicit-int]
main.c:4:1: warning: type of ‘h’ defaults to ‘int’ [-Wimplicit-int]
main.c:4:1: warning: type of ‘n’ defaults to ‘int’ [-Wimplicit-int]
main.c:4:1: warning: type of ‘i’ defaults to ‘int’ [-Wimplicit-int]
main.c:5:9: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
5 | scanf("%d%d%d",&h,&w,&n);
| ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
+++ |+#include <stdio.h>
1 | char un[1000010];
main.c:5:9: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
5 | scanf("%d%d%d",&h,&w,&n);
| ^~~~~
main.c:5:9: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
main.c:16:9: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
16 | printf(x+y&1?"black":"white");
| ^~~~~~
main.c:16:9: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
main.c:16:9: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
main.c:16:9: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
ソースコード
char un[1000010];
int ko[1000010];
x;y;
main(w,h,n,i){
scanf("%d%d%d",&h,&w,&n);
for(i=0;i<n;++i){
scanf(" %c%d",&un[i],&ko[i]);
}
for(i=n;--i>=0;){
if(un[i]=='R'){
if(y==ko[i]) x=(x+w-1)%w;
}else{
if(x==ko[i]) y=(y+h-1)%h;
}
}
printf(x+y&1?"black":"white");
return 0;
}
tails