結果

問題 No.2165 Let's Play Nim!
ユーザー CleyLCleyL
提出日時 2022-12-20 20:13:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,073 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 25,580 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-04-29 02:58:12
合計ジャッジ時間 18,032 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
24,812 KB
testcase_01 AC 123 ms
25,052 KB
testcase_02 AC 132 ms
25,452 KB
testcase_03 AC 81 ms
24,812 KB
testcase_04 AC 22 ms
24,800 KB
testcase_05 AC 27 ms
24,812 KB
testcase_06 AC 27 ms
24,556 KB
testcase_07 AC 26 ms
24,940 KB
testcase_08 AC 87 ms
25,464 KB
testcase_09 AC 22 ms
24,824 KB
testcase_10 AC 29 ms
24,824 KB
testcase_11 AC 134 ms
25,196 KB
testcase_12 AC 111 ms
24,556 KB
testcase_13 AC 21 ms
25,196 KB
testcase_14 AC 27 ms
25,196 KB
testcase_15 AC 23 ms
25,324 KB
testcase_16 AC 110 ms
24,940 KB
testcase_17 AC 60 ms
24,940 KB
testcase_18 AC 194 ms
25,580 KB
testcase_19 AC 23 ms
24,568 KB
testcase_20 AC 25 ms
24,568 KB
testcase_21 AC 45 ms
24,580 KB
testcase_22 AC 37 ms
24,580 KB
testcase_23 AC 35 ms
25,220 KB
testcase_24 AC 34 ms
24,964 KB
testcase_25 AC 69 ms
24,836 KB
testcase_26 AC 131 ms
25,196 KB
testcase_27 AC 41 ms
24,556 KB
testcase_28 AC 62 ms
24,556 KB
testcase_29 AC 21 ms
25,196 KB
testcase_30 AC 21 ms
25,196 KB
testcase_31 AC 21 ms
24,940 KB
testcase_32 AC 82 ms
24,556 KB
evil_2_big_1.txt TLE -
evil_2_big_2.txt TLE -
evil_2_big_3.txt TLE -
evil_big_1.txt TLE -
evil_big_2.txt TLE -
evil_big_3.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int main(){
  int n;cin>>n;
  vector<int> A(n);
  int nw = 0;
  for(int i = 0; n > i; i++){
    cin>>A[i];
    nw ^= A[i];
  }
  if(nw != 0){
    cout << 1 << endl;
    bool ok = false;
    for(int j = 0; !ok && n > j; j++){
      for(int k = 1; A[j] >= k; k++){
        if((nw^A[j]^(A[j]-k)) == 0){
          cout << j+1 << " " << k << endl;
          A[j] -= k;
          nw = 0;
          ok = true;
          break;
        }
      }
    }
    int ret;cin>>ret;
    if(ret == -1)return 0;
  }else{
    cout << 0 << endl;
  }
  
  while(true){
    int tmp;
    int i;cin>>i>>tmp;
    nw = (nw^A[i-1]^(A[i-1]-tmp));
    A[i-1] -= tmp;
    int ret;cin>>ret;
    if(ret == -1)return 0;
    bool ok = false;
    for(int j = 0; !ok && n > j; j++){
      for(int k = 1; A[j] >= k; k++){
        if((nw^A[j]^(A[j]-k)) == 0){
          cout << j+1 << " " << k << endl;
          A[j] -= k;
          nw = 0;
          ok = true;
          break;
        }
      }
    }
    cin>>ret;
    if(ret == -1)return 0;
  }
}
0