結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
69,628 KB
testcase_01 AC 275 ms
94,232 KB
testcase_02 AC 278 ms
94,680 KB
testcase_03 AC 227 ms
94,140 KB
testcase_04 AC 72 ms
78,316 KB
testcase_05 AC 103 ms
85,464 KB
testcase_06 AC 103 ms
85,484 KB
testcase_07 AC 98 ms
85,288 KB
testcase_08 AC 233 ms
94,888 KB
testcase_09 AC 78 ms
80,876 KB
testcase_10 AC 137 ms
93,736 KB
testcase_11 AC 281 ms
94,596 KB
testcase_12 AC 256 ms
94,604 KB
testcase_13 AC 68 ms
77,060 KB
testcase_14 AC 97 ms
84,628 KB
testcase_15 AC 78 ms
80,824 KB
testcase_16 AC 250 ms
94,008 KB
testcase_17 AC 195 ms
93,980 KB
testcase_18 AC 331 ms
94,608 KB
testcase_19 AC 71 ms
77,736 KB
testcase_20 AC 92 ms
83,344 KB
testcase_21 AC 175 ms
93,940 KB
testcase_22 AC 164 ms
94,088 KB
testcase_23 AC 155 ms
93,924 KB
testcase_24 AC 147 ms
93,588 KB
testcase_25 AC 208 ms
93,712 KB
testcase_26 AC 270 ms
94,800 KB
testcase_27 AC 166 ms
93,504 KB
testcase_28 AC 196 ms
93,472 KB
testcase_29 AC 60 ms
69,520 KB
testcase_30 AC 59 ms
69,112 KB
testcase_31 AC 60 ms
70,604 KB
testcase_32 AC 226 ms
93,824 KB
evil_2_big_1.txt AC 1,730 ms
99,064 KB
evil_2_big_2.txt AC 1,877 ms
106,244 KB
evil_2_big_3.txt AC 1,714 ms
98,892 KB
evil_big_1.txt AC 1,871 ms
104,024 KB
evil_big_2.txt AC 1,890 ms
107,304 KB
evil_big_3.txt AC 1,896 ms
107,396 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