結果
問題 | No.2165 Let's Play Nim! |
ユーザー | tails |
提出日時 | 2022-12-16 09:54:30 |
言語 | cLay (20240714-1) |
結果 |
RE
|
実行時間 | - |
コード長 | 976 bytes |
コンパイル時間 | 3,663 ms |
コンパイル使用メモリ | 174,096 KB |
実行使用メモリ | 26,396 KB |
平均クエリ数 | 1.82 |
最終ジャッジ日時 | 2024-11-15 14:57:49 |
合計ジャッジ時間 | 6,807 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,196 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 | 24 ms
24,812 KB |
testcase_31 | AC | 23 ms
25,196 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){ exit(4); } ll z=31-__builtin_clz(x); if(dn[z]==0){ exit(5); } ll i=dv[z][dn[z]-1]; if(i<0||i>=n){ exit(6); } del(i); unsigned b=x^s[i].a; if((ll)s[i].a-b-(ll)b<0){ 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; }