結果
問題 | No.1954 CHECKER×CHECKER(2) |
ユーザー | tails |
提出日時 | 2022-05-24 14:07:42 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 780 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-20 14:22:49 |
合計ジャッジ時間 | 1,199 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 0 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 0 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 0 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function 'dame': main.c:10:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration] 10 | write(1,"No",2); | ^~~~~ main.c:11:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration] 11 | _exit(0); | ^~~~~ | _Exit
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") #define rd_skip() while(*rp++>=48) #define rd() ({long _v=0,_c;while(_c=*rp++-48,_c>=0)_v=_v*10+_c;_v;}) #define rep(v,e) for(long v=0;v<e;++v) #define rep3(v,s,e) for(long v=s;v<e;++v) void dame(){ write(1,"No",2); _exit(0); } char ts[2][201]; int main(){ char*mmap(); char*rp=mmap(0l,1l<<25,1,2,0,0ll); long h=rd(),w=rd(); char*r0=rp; rp+=w+1; rep3(y,1,h){ rep3(x,1,w){ if(r0[0]^r0[x]^rp[0]^rp[x]){ dame(); } } rp+=w+1; } rd_skip(); while(*rp){ long t=*rp&1; rp+=2; ts[t][rd()-1]=1; } rep(y,h-1){ if(!ts[1][y]){ if(r0[y*(w+1)]==r0[(y+1)*(w+1)]){ dame(); } } } rep(x,w-1){ if(!ts[0][x]){ if(r0[x]==r0[x+1]){ dame(); } } } write(1,"Yes",3); _exit(0); }