結果

問題 No.2165 Let's Play Nim!
ユーザー mkawa2mkawa2
提出日時 2022-12-19 00:19:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 592 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 101,144 KB
平均クエリ数 1.85
最終ジャッジ日時 2024-11-18 00:07:16
合計ジャッジ時間 34,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 TLE -
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 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 49 ms
69,660 KB
testcase_31 RE -
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 TLE -
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)
        aa[i] = b
    else:
        i, k = map(int, input().split())
        i -= 1
        a = aa[i]
        b = a-k
        x ^= a ^ b
    if b: heappush(hp, (-b, i))
    ret = int(input())
        
0