結果

問題 No.2165 Let's Play Nim!
ユーザー ntudantuda
提出日時 2023-04-16 20:14:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 1,199 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 95,428 KB
平均クエリ数 697.67
最終ジャッジ日時 2024-10-12 02:41:37
合計ジャッジ時間 19,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,984 KB
testcase_01 AC 281 ms
94,572 KB
testcase_02 AC 288 ms
95,140 KB
testcase_03 AC 217 ms
94,408 KB
testcase_04 AC 66 ms
70,728 KB
testcase_05 AC 75 ms
72,392 KB
testcase_06 AC 78 ms
72,904 KB
testcase_07 AC 74 ms
72,136 KB
testcase_08 AC 232 ms
94,160 KB
testcase_09 AC 68 ms
71,632 KB
testcase_10 AC 85 ms
80,464 KB
testcase_11 AC 290 ms
94,992 KB
testcase_12 AC 251 ms
94,792 KB
testcase_13 AC 65 ms
70,984 KB
testcase_14 AC 75 ms
72,776 KB
testcase_15 AC 69 ms
70,984 KB
testcase_16 AC 248 ms
94,716 KB
testcase_17 AC 148 ms
92,872 KB
testcase_18 AC 376 ms
95,428 KB
testcase_19 AC 67 ms
70,480 KB
testcase_20 AC 73 ms
72,656 KB
testcase_21 AC 120 ms
88,536 KB
testcase_22 AC 96 ms
82,136 KB
testcase_23 AC 93 ms
81,752 KB
testcase_24 AC 89 ms
79,952 KB
testcase_25 AC 206 ms
94,604 KB
testcase_26 AC 296 ms
94,972 KB
testcase_27 AC 104 ms
83,784 KB
testcase_28 AC 163 ms
93,412 KB
testcase_29 AC 65 ms
70,240 KB
testcase_30 AC 61 ms
69,984 KB
testcase_31 AC 62 ms
70,368 KB
testcase_32 AC 247 ms
94,560 KB
evil_2_big_1.txt AC 1,480 ms
100,368 KB
evil_2_big_2.txt TLE -
evil_2_big_3.txt AC 1,467 ms
99,792 KB
evil_big_1.txt AC 1,848 ms
109,656 KB
evil_big_2.txt AC 1,987 ms
115,852 KB
evil_big_3.txt AC 1,981 ms
116,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def inp():
    global g
    i, k = map(int, input().split())
    i -= 1
    g ^= A[i]
    dic[A[i]].remove(i)
    A[i] -= k
    if A[i] == 0:
        remain.remove(i)
    else:
        dic[A[i]].add(i)
    g ^= A[i]

def find(x):
    j = 0
    if len(dic[x]) > 0:
        return next(iter(dic[x]))
    else:
        return -1

from collections import defaultdict
dic = defaultdict(set)
n = int(input())
A = list(map(int, input().split()))
remain = set(range(n))
g = 0
for i, a in enumerate(A):
    g ^= a
    dic[a].add(i)

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

while 1:
    #print(A,g)
    if g != 0:
        i = find(g)
        if i == -1:
            for j in remain:
                gt = A[j] ^ g
                if gt <= A[j]:
                    i = j
                    break
        dic[A[i]].remove(i)
        to = A[i] ^ g
        subt = A[i] - to
        A[i] = to
        if A[i] == 0:
            remain.remove(i)
        else:
            dic[A[i]].add(i)
        g = 0
        print(i + 1, subt)
        rec()

    #if sum(A) == 0:
    #    print("finish")
    #    exit()
    #print(A,g)
    inp()
    rec()
0