結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,452 KB
testcase_01 AC 113 ms
24,940 KB
testcase_02 AC 123 ms
24,812 KB
testcase_03 AC 76 ms
24,812 KB
testcase_04 AC 19 ms
25,440 KB
testcase_05 AC 23 ms
25,196 KB
testcase_06 AC 23 ms
24,556 KB
testcase_07 AC 22 ms
24,940 KB
testcase_08 AC 78 ms
24,824 KB
testcase_09 AC 20 ms
24,568 KB
testcase_10 AC 25 ms
24,824 KB
testcase_11 AC 120 ms
24,812 KB
testcase_12 AC 102 ms
24,556 KB
testcase_13 AC 19 ms
25,196 KB
testcase_14 AC 23 ms
24,556 KB
testcase_15 AC 19 ms
24,556 KB
testcase_16 AC 98 ms
24,556 KB
testcase_17 AC 48 ms
24,556 KB
testcase_18 AC 171 ms
24,812 KB
testcase_19 AC 19 ms
24,824 KB
testcase_20 AC 21 ms
24,808 KB
testcase_21 AC 40 ms
24,580 KB
testcase_22 AC 34 ms
24,836 KB
testcase_23 AC 32 ms
24,964 KB
testcase_24 AC 29 ms
24,580 KB
testcase_25 AC 65 ms
24,964 KB
testcase_26 AC 119 ms
24,556 KB
testcase_27 AC 36 ms
24,928 KB
testcase_28 AC 54 ms
24,556 KB
testcase_29 AC 18 ms
25,196 KB
testcase_30 AC 17 ms
24,940 KB
testcase_31 AC 18 ms
25,196 KB
testcase_32 AC 75 ms
24,940 KB
evil_2_big_1.txt AC 1,941 ms
24,812 KB
evil_2_big_2.txt TLE -
evil_2_big_3.txt AC 1,985 ms
25,196 KB
evil_big_1.txt AC 1,861 ms
25,220 KB
evil_big_2.txt TLE -
evil_big_3.txt AC 1,989 ms
25,496 KB
権限があれば一括ダウンロードができます

ソースコード

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