結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
70,168 KB
testcase_01 AC 237 ms
93,236 KB
testcase_02 AC 249 ms
93,864 KB
testcase_03 AC 192 ms
92,776 KB
testcase_04 AC 63 ms
68,880 KB
testcase_05 AC 84 ms
79,736 KB
testcase_06 AC 81 ms
79,140 KB
testcase_07 AC 77 ms
78,880 KB
testcase_08 AC 194 ms
93,596 KB
testcase_09 AC 66 ms
70,520 KB
testcase_10 AC 99 ms
85,384 KB
testcase_11 AC 243 ms
93,660 KB
testcase_12 AC 222 ms
93,392 KB
testcase_13 AC 62 ms
69,744 KB
testcase_14 AC 77 ms
77,428 KB
testcase_15 AC 66 ms
70,120 KB
testcase_16 AC 215 ms
93,692 KB
testcase_17 AC 156 ms
92,872 KB
testcase_18 AC 305 ms
93,516 KB
testcase_19 AC 64 ms
69,788 KB
testcase_20 AC 76 ms
77,168 KB
testcase_21 AC 146 ms
92,788 KB
testcase_22 AC 134 ms
92,956 KB
testcase_23 AC 122 ms
90,832 KB
testcase_24 AC 111 ms
88,612 KB
testcase_25 AC 180 ms
93,320 KB
testcase_26 AC 242 ms
93,984 KB
testcase_27 AC 130 ms
92,912 KB
testcase_28 AC 163 ms
93,236 KB
testcase_29 AC 61 ms
68,876 KB
testcase_30 AC 59 ms
68,812 KB
testcase_31 AC 59 ms
69,008 KB
testcase_32 AC 209 ms
93,260 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