結果
問題 | No.2165 Let's Play Nim! |
ユーザー | 沙耶花 |
提出日時 | 2022-12-16 00:08:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,050 bytes |
コンパイル時間 | 4,628 ms |
コンパイル使用メモリ | 256,532 KB |
実行使用メモリ | 87,516 KB |
平均クエリ数 | 494.67 |
最終ジャッジ日時 | 2024-04-26 23:51:14 |
合計ジャッジ時間 | 13,110 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
25,184 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 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
evil_2_big_1.txt | -- | - |
evil_2_big_2.txt | -- | - |
evil_2_big_3.txt | -- | - |
evil_big_1.txt | -- | - |
evil_big_2.txt | -- | - |
evil_big_3.txt | -- | - |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001 vector<vector<int>> is(30); vector<int> a; int X = 0; void Go(){ int m = 29; for(int i=29;i>=0;i--){ if((X>>i)&1){ m = i; break; } } while(true){ int ii = is[m].back(); is[m].pop_back(); if((a[ii]>>m)&1){ cout<<ii+1<<' '<<a[ii] - (a[ii]^X)<<endl; a[ii] ^= X; X = 0; break; } } int r; cin>>r; if(r==-1)exit(0); } void Other(){ int i,k; cin>>i>>k; i--; X ^= a[i]; a[i] -= k; X ^= a[i]; rep(j,30){ if((a[i]>>j)&1)is[j].push_back(i); } int r; cin>>r; if(r==-1)exit(0); } int main(){ int n; cin>>n; a.resize(n); rep(i,n){ scanf("%d",&a[i]); rep(j,30){ if((a[i]>>j)&1)is[j].push_back(i); } X ^= a[i]; } if(X!=0){ cout<<1<<endl; Go(); } else{ cout<<0<<endl; } while(true){ Other(); Go(); } return 0; }