結果

問題 No.2165 Let's Play Nim!
ユーザー titiatitia
提出日時 2022-12-16 02:05:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 93,400 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-04-27 02:04:31
合計ジャッジ時間 25,524 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,924 KB
testcase_01 AC 231 ms
93,400 KB
testcase_02 AC 246 ms
93,056 KB
testcase_03 AC 191 ms
92,864 KB
testcase_04 AC 59 ms
70,020 KB
testcase_05 AC 77 ms
78,760 KB
testcase_06 AC 76 ms
77,668 KB
testcase_07 AC 72 ms
77,356 KB
testcase_08 AC 194 ms
93,152 KB
testcase_09 AC 64 ms
70,088 KB
testcase_10 AC 95 ms
85,516 KB
testcase_11 AC 239 ms
93,140 KB
testcase_12 AC 218 ms
93,020 KB
testcase_13 AC 60 ms
69,192 KB
testcase_14 AC 77 ms
78,632 KB
testcase_15 AC 64 ms
70,480 KB
testcase_16 AC 215 ms
93,296 KB
testcase_17 AC 153 ms
93,032 KB
testcase_18 AC 307 ms
93,376 KB
testcase_19 AC 60 ms
70,168 KB
testcase_20 AC 75 ms
76,848 KB
testcase_21 AC 143 ms
92,836 KB
testcase_22 AC 128 ms
92,908 KB
testcase_23 AC 118 ms
90,628 KB
testcase_24 AC 120 ms
87,476 KB
testcase_25 AC 177 ms
93,256 KB
testcase_26 AC 236 ms
92,968 KB
testcase_27 AC 133 ms
93,280 KB
testcase_28 AC 159 ms
92,944 KB
testcase_29 AC 59 ms
70,476 KB
testcase_30 AC 56 ms
69,068 KB
testcase_31 AC 56 ms
69,540 KB
testcase_32 AC 207 ms
93,052 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 #

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)

while True:
    for i in range(n):
        if A[i]^XOR<A[i]:
            nec=A[i]^XOR

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

            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()
0