結果

問題 No.2165 Let's Play Nim!
ユーザー meruuu61779999meruuu61779999
提出日時 2023-04-13 00:25:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 331 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 93,768 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-10-09 01:35:36
合計ジャッジ時間 24,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,448 KB
testcase_01 AC 235 ms
93,280 KB
testcase_02 AC 246 ms
93,256 KB
testcase_03 AC 190 ms
92,232 KB
testcase_04 AC 62 ms
69,064 KB
testcase_05 AC 83 ms
78,152 KB
testcase_06 AC 80 ms
77,680 KB
testcase_07 AC 77 ms
76,744 KB
testcase_08 AC 196 ms
93,216 KB
testcase_09 AC 66 ms
69,712 KB
testcase_10 AC 99 ms
84,944 KB
testcase_11 AC 235 ms
92,488 KB
testcase_12 AC 218 ms
92,940 KB
testcase_13 AC 61 ms
68,808 KB
testcase_14 AC 79 ms
77,128 KB
testcase_15 AC 64 ms
69,832 KB
testcase_16 AC 215 ms
92,616 KB
testcase_17 AC 157 ms
93,000 KB
testcase_18 AC 331 ms
93,768 KB
testcase_19 AC 67 ms
68,688 KB
testcase_20 AC 83 ms
76,752 KB
testcase_21 AC 163 ms
92,248 KB
testcase_22 AC 147 ms
92,632 KB
testcase_23 AC 121 ms
90,200 KB
testcase_24 AC 124 ms
87,000 KB
testcase_25 AC 197 ms
93,016 KB
testcase_26 AC 245 ms
92,928 KB
testcase_27 AC 134 ms
92,104 KB
testcase_28 AC 165 ms
93,000 KB
testcase_29 AC 63 ms
68,448 KB
testcase_30 AC 58 ms
67,936 KB
testcase_31 AC 59 ms
68,344 KB
testcase_32 AC 215 ms
93,024 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 #

N = int(input())
A = list(map(int, input().split()))

nim = 0
for a in A:
    nim ^= a
t = 1 if nim else 0
print(t, flush=True)
if t == 0:
    idx, k = map(int, input().split())
    idx -= 1
    nim = A[idx]
    A[idx] -= k
    nim ^= A[idx]

    ret = int(input())
    if ret == -1:
        exit()

while True:
    for i, a in enumerate(A):
        na = a ^ nim
        if na < a:
            A[i] -= a - na
            print(i + 1, a - na, flush=True)
            break

    ret = int(input())
    if ret == -1:
        exit()

    idx, k = map(int, input().split())
    idx -= 1
    nim = A[idx]
    A[idx] -= k
    nim ^= A[idx]

    ret = int(input())
    if ret == -1:
        exit()
0