結果
問題 | No.2165 Let's Play Nim! |
ユーザー | tails |
提出日時 | 2022-12-16 10:07:17 |
言語 | cLay (20240714-1) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,061 bytes |
コンパイル時間 | 3,267 ms |
コンパイル使用メモリ | 172,572 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 38.15 |
最終ジャッジ日時 | 2024-11-15 15:11:19 |
合計ジャッジ時間 | 6,602 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
24,556 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 22 ms
25,568 KB |
testcase_31 | AC | 22 ms
24,812 KB |
testcase_32 | RE | - |
evil_2_big_1.txt | RE | - |
evil_2_big_2.txt | RE | - |
evil_2_big_3.txt | RE | - |
evil_big_1.txt | RE | - |
evil_big_2.txt | RE | - |
evil_big_3.txt | RE | - |
ソースコード
//interactive struct S{ unsigned a; int j[18]; }; S s[80000]; int dv[18][80000]; int dn[18]; void add(ll i){ rep(z,18){ if(s[i].a&1<<z){ dv[z][dn[z]]=i; s[i].j[z]=dn[z]; dn[z]+=1; } } } void del(ll i){ rep(z,18){ if(s[i].a&1<<z){ if(dn[z]==0){ exit(8); } dn[z]-=1; dv[z][s[i].j[z]]=dv[z][dn[z]]; } } } { ll@n; unsigned x=0; rep(i,n){ unsigned@a; x^=a; s[i].a=a; add(i); } if(x==0){ wt(0); goto opp_turn; } wt(1); my_turn:; { if(x==0){ for(;;); exit(4); } ll z=31-__builtin_clz(x); if(dn[z]==0){ for(;;); exit(5); } ll i=dv[z][dn[z]-1]; if(i<0||i>=n){ for(;;); exit(6); } if((s[i].a&1<<31-__builtin_clz(x))==0){ exit(9); } del(i); unsigned b=x^s[i].a; if((ll)s[i].a-(ll)b<0){ for(;;); exit(7); } wt(i+1,s[i].a-b); s[i].a=b; add(i); } { ll@a; if(a<0){ exit(0); } } opp_turn:; { ll@--i; unsigned@k; del(i); x=s[i].a; s[i].a-=k; x^=s[i].a; add(i); } { ll@a; if(a<0){ exit(0); } } static int dbg_turn=0; if(++dbg_turn==100){ exit(3); } goto my_turn; }