結果

問題 No.2165 Let's Play Nim!
ユーザー mkawa2mkawa2
提出日時 2022-12-19 00:25:33
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 587 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,048 KB
平均クエリ数 3.10
最終ジャッジ日時 2024-04-29 01:54:15
合計ジャッジ時間 7,391 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
68,448 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 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 68 ms
68,960 KB
testcase_31 AC 67 ms
68,704 KB
testcase_32 RE -
evil_2_big_1.txt RE -
evil_2_big_2.txt RE -
evil_2_big_3.txt RE -
evil_big_1.txt RE -
evil_big_2.txt RE -
evil_big_3.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

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

hp = []
x = 0
for i, a in enumerate(aa):
    x ^= a
    heappush(hp, (-a, i))

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

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