結果

問題 No.2165 Let's Play Nim!
ユーザー ntudantuda
提出日時 2023-04-15 23:44:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,086 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 117,136 KB
平均クエリ数 812.51
最終ジャッジ日時 2024-10-11 07:45:12
合計ジャッジ時間 36,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,728 KB
testcase_01 AC 1,280 ms
103,496 KB
testcase_02 AC 1,427 ms
104,952 KB
testcase_03 AC 655 ms
96,560 KB
testcase_04 AC 65 ms
69,448 KB
testcase_05 AC 135 ms
93,052 KB
testcase_06 AC 136 ms
93,280 KB
testcase_07 AC 118 ms
93,128 KB
testcase_08 AC 723 ms
98,616 KB
testcase_09 AC 74 ms
76,912 KB
testcase_10 AC 159 ms
92,912 KB
testcase_11 AC 1,343 ms
104,496 KB
testcase_12 AC 1,043 ms
101,384 KB
testcase_13 AC 65 ms
69,704 KB
testcase_14 AC 128 ms
92,616 KB
testcase_15 AC 69 ms
71,368 KB
testcase_16 AC 932 ms
100,476 KB
testcase_17 AC 404 ms
95,048 KB
testcase_18 TLE -
testcase_19 AC 63 ms
70,224 KB
testcase_20 AC 106 ms
90,064 KB
testcase_21 AC 310 ms
94,824 KB
testcase_22 AC 242 ms
95,108 KB
testcase_23 AC 220 ms
93,444 KB
testcase_24 AC 203 ms
93,980 KB
testcase_25 AC 549 ms
95,472 KB
testcase_26 AC 1,206 ms
102,952 KB
testcase_27 AC 260 ms
94,280 KB
testcase_28 AC 436 ms
94,640 KB
testcase_29 AC 62 ms
69,600 KB
testcase_30 AC 60 ms
68,968 KB
testcase_31 AC 62 ms
69,216 KB
testcase_32 AC 281 ms
94,524 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 #

from heapq import *


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

def out():
    global g
    maxa = max(A)
    g2 = g ^ maxa
    if maxa <= g2:
        i = A.index(max)
        print(i + 1, g2)
    else:
        g2 = g ^ maxa
        for i in range(n):
            if A[i] >= g2:
                break
        g ^= A[i]
        A[i] = g
        g ^= g

def inp():
    global g
    i, k = map(int, input().split())
    g ^= A[i - 1]
    A[i - 1] -= k
    g ^= A[i - 1]


n = int(input())
A = list(map(int, input().split()))
g = 0
q = []
for i, a in enumerate(A):
    g ^= a
    q.append((-a, i))

if g == 0:
    print(0)
else:
    print(1)

heapify(q)

while 1:
    tmpa = []
    while g != 0:
        x,i = heappop(q)
        gtmp = g ^ A[i]
        if gtmp < A[i]:
            subt = A[i] - gtmp
            A[i] = gtmp
            g = 0
            print(i + 1,subt)
            rec()
            if gtmp > 0:
                tmpa.append((gtmp,i))
        else:
            tmpa.append((x,i))

    for xx in tmpa:
        heappush(q,xx)

    inp()
    rec()

0