結果

問題 No.2165 Let's Play Nim!
ユーザー mkawa2mkawa2
提出日時 2022-12-19 00:59:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 751 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,432 KB
平均クエリ数 884.90
最終ジャッジ日時 2024-04-29 01:55:28
合計ジャッジ時間 20,967 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
68,576 KB
testcase_01 AC 376 ms
95,300 KB
testcase_02 AC 398 ms
96,432 KB
testcase_03 AC 329 ms
95,536 KB
testcase_04 AC 74 ms
75,744 KB
testcase_05 AC 110 ms
82,504 KB
testcase_06 AC 107 ms
82,632 KB
testcase_07 AC 99 ms
79,944 KB
testcase_08 AC 338 ms
95,660 KB
testcase_09 AC 83 ms
77,648 KB
testcase_10 AC 123 ms
84,816 KB
testcase_11 AC 394 ms
96,068 KB
testcase_12 AC 344 ms
94,916 KB
testcase_13 AC 73 ms
75,208 KB
testcase_14 AC 103 ms
81,352 KB
testcase_15 AC 79 ms
76,616 KB
testcase_16 AC 359 ms
95,868 KB
testcase_17 AC 270 ms
94,604 KB
testcase_18 AC 417 ms
95,128 KB
testcase_19 AC 76 ms
74,832 KB
testcase_20 AC 97 ms
79,568 KB
testcase_21 AC 207 ms
93,784 KB
testcase_22 AC 183 ms
93,400 KB
testcase_23 AC 155 ms
92,504 KB
testcase_24 AC 144 ms
90,968 KB
testcase_25 AC 292 ms
94,944 KB
testcase_26 AC 463 ms
94,652 KB
testcase_27 AC 196 ms
94,416 KB
testcase_28 AC 265 ms
94,024 KB
testcase_29 AC 69 ms
69,472 KB
testcase_30 AC 65 ms
69,472 KB
testcase_31 AC 65 ms
68,832 KB
testcase_32 AC 254 ms
94,304 KB
evil_2_big_1.txt AC 1,731 ms
97,096 KB
evil_2_big_2.txt AC 1,974 ms
99,712 KB
evil_2_big_3.txt AC 1,728 ms
97,736 KB
evil_big_1.txt AC 1,925 ms
99,032 KB
evil_big_2.txt TLE -
evil_big_3.txt AC 1,958 ms
99,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
aa = list(map(int, input().split()))

ii = [set() for _ in range(18)]
def push(i, a):
    aa[i] = a
    for j in range(18):
        if a & 1: ii[j].add(i)
        a >>= 1

def get(x):
    j = x.bit_length()-1
    i = ii[j].pop()
    rem(i)
    return i

def rem(i):
    for j in range(18):
        ii[j].discard(i)

x = 0
for i, a in enumerate(aa):
    x ^= a
    push(i, a)

t = 1 if x else 0
print(t, flush=True)

ret = 0
while ret == 0:
    if t:
        i = get(x)
        a = aa[i]
        b = x ^ a
        k = a-b
        print(i+1, k, flush=True)
    else:
        i, k = map(int, input().split())
        i -= 1
        a = aa[i]
        rem(i)
        b = a-k
    x ^= a ^ b
    push(i, b)
    ret = int(input())
    t ^= 1
0