結果

問題 No.2165 Let's Play Nim!
ユーザー titiatitia
提出日時 2022-12-16 02:22:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 1,201 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 95,176 KB
平均クエリ数 911.51
最終ジャッジ日時 2024-11-15 06:20:00
合計ジャッジ時間 19,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
68,704 KB
testcase_01 AC 277 ms
94,092 KB
testcase_02 AC 285 ms
95,176 KB
testcase_03 AC 232 ms
94,248 KB
testcase_04 AC 74 ms
77,768 KB
testcase_05 AC 105 ms
85,576 KB
testcase_06 AC 105 ms
85,192 KB
testcase_07 AC 101 ms
83,808 KB
testcase_08 AC 234 ms
94,396 KB
testcase_09 AC 82 ms
79,804 KB
testcase_10 AC 143 ms
93,880 KB
testcase_11 AC 282 ms
94,688 KB
testcase_12 AC 262 ms
94,152 KB
testcase_13 AC 72 ms
75,840 KB
testcase_14 AC 101 ms
83,912 KB
testcase_15 AC 81 ms
79,432 KB
testcase_16 AC 256 ms
94,864 KB
testcase_17 AC 200 ms
93,964 KB
testcase_18 AC 325 ms
94,568 KB
testcase_19 AC 76 ms
78,160 KB
testcase_20 AC 93 ms
82,512 KB
testcase_21 AC 185 ms
94,040 KB
testcase_22 AC 167 ms
93,692 KB
testcase_23 AC 160 ms
93,528 KB
testcase_24 AC 153 ms
93,912 KB
testcase_25 AC 213 ms
94,040 KB
testcase_26 AC 274 ms
94,468 KB
testcase_27 AC 172 ms
93,896 KB
testcase_28 AC 202 ms
93,764 KB
testcase_29 AC 64 ms
69,344 KB
testcase_30 AC 60 ms
69,344 KB
testcase_31 AC 62 ms
69,216 KB
testcase_32 AC 233 ms
94,184 KB
evil_2_big_1.txt AC 1,723 ms
98,328 KB
evil_2_big_2.txt AC 1,871 ms
106,416 KB
evil_2_big_3.txt AC 1,715 ms
98,716 KB
evil_big_1.txt AC 1,860 ms
104,024 KB
evil_big_2.txt AC 1,937 ms
107,524 KB
evil_big_3.txt AC 1,914 ms
106,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

XOR=0
for a in A:
    XOR^=a

if XOR==0:
    print(0,flush=True)

    i,k=map(int,input().split())
    XOR^=A[i-1]
    A[i-1]-=k
    XOR^=A[i-1]
    ret=int(input())
    if ret==-1:
        exit()
else:
    print(1,flush=True)

SET=[set() for i in range(32)]

for i in range(n):
    for j in range(32):
        if A[i] & (1<<j)!= 0:
            SET[j].add(i)

while True:
    for j in range(31,-1,-1):
        if XOR & (1<<j) != 0:
            ki=j
            break
    for i in SET[j]:
        nec=A[i]^XOR

        print(i+1,A[i]-nec,flush=True)
        A[i]=nec
        XOR=0
        ret=int(input())
        if ret==-1:
            exit()

        for j in range(32):
            if i in SET[j]:
                SET[j].remove(i)

        for j in range(32):
            if nec & (1<<j) != 0:
                SET[j].add(i)
        break

    i,k=map(int,input().split())
    XOR^=A[i-1]
    A[i-1]-=k
    XOR^=A[i-1]
    ret=int(input())
    if ret==-1:
        exit()

    for j in range(32):
        if i-1 in SET[j]:
            SET[j].remove(i-1)

    for j in range(32):
        if A[i-1] & (1<<j) != 0:
            SET[j].add(i-1)

    
    
0