結果

問題 No.2165 Let's Play Nim!
ユーザー ntudantuda
提出日時 2023-04-16 10:27:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,453 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 297,196 KB
平均クエリ数 403.49
最終ジャッジ日時 2024-10-11 21:09:18
合計ジャッジ時間 12,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
68,960 KB
testcase_01 AC 975 ms
113,848 KB
testcase_02 AC 1,174 ms
142,920 KB
testcase_03 AC 441 ms
95,048 KB
testcase_04 AC 70 ms
70,088 KB
testcase_05 AC 89 ms
80,840 KB
testcase_06 AC 88 ms
80,584 KB
testcase_07 AC 82 ms
78,920 KB
testcase_08 AC 476 ms
98,896 KB
testcase_09 AC 69 ms
74,960 KB
testcase_10 AC 99 ms
85,712 KB
testcase_11 AC 1,217 ms
157,512 KB
testcase_12 AC 820 ms
109,768 KB
testcase_13 AC 65 ms
69,200 KB
testcase_14 AC 84 ms
79,048 KB
testcase_15 AC 67 ms
70,216 KB
testcase_16 AC 711 ms
105,032 KB
testcase_17 AC 243 ms
93,732 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
evil_2_big_1.txt -- -
evil_2_big_2.txt -- -
evil_2_big_3.txt -- -
evil_big_1.txt -- -
evil_big_2.txt -- -
evil_big_3.txt -- -
権限があれば一括ダウンロードができます

ソースコード

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]
    remX(A[i], i)
    A[i] -= k
    if A[i] == 0:
        remain.remove(i)

    setX(A[i], i)
    g ^= A[i]

def remX(x, i):
    j = 0
    while x > 0:
        if x & 1:
            X[j].remove(i)
        x >>= 1
        j += 1

def setX(x, i):
    j = 0
    while x > 0:
        if x & 1:
            X[j].add(i)
        x >>= 1
        j += 1

def find(x):
    j = 0
    tmp = set(range(n))
    while x > 0:
        if x & 1:
            tmp &= X[j]
        j += 1
        x >>= 1
    if tmp:
        return next(iter(tmp))
    else:
        return -1

X = [set() for _ in range(14)]
n = int(input())
A = list(map(int, input().split()))
remain = set(range(n))
g = 0

for i, a in enumerate(A):
    g ^= a
    setX(a, 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
        remX(A[i], i)
        to = A[i] ^ g
        subt = A[i] - to
        A[i] = to
        if A[i] == 0:
            remain.remove(i)
        setX(to, i)
        g = 0
        print(i + 1, subt)
        rec()

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