結果

問題 No.2165 Let's Play Nim!
ユーザー roarisroaris
提出日時 2022-12-16 02:04:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 639 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 93,552 KB
平均クエリ数 650.69
最終ジャッジ日時 2024-11-14 18:52:39
合計ジャッジ時間 50,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 229 ms
92,912 KB
testcase_03 AC 172 ms
91,908 KB
testcase_04 AC 63 ms
68,892 KB
testcase_05 AC 77 ms
76,932 KB
testcase_06 AC 76 ms
75,984 KB
testcase_07 AC 74 ms
76,432 KB
testcase_08 TLE -
testcase_09 AC 63 ms
69,500 KB
testcase_10 AC 86 ms
80,800 KB
testcase_11 AC 228 ms
92,988 KB
testcase_12 AC 207 ms
93,160 KB
testcase_13 AC 62 ms
70,184 KB
testcase_14 AC 75 ms
75,980 KB
testcase_15 AC 65 ms
69,480 KB
testcase_16 AC 203 ms
92,636 KB
testcase_17 AC 138 ms
89,056 KB
testcase_18 AC 295 ms
93,552 KB
testcase_19 AC 64 ms
69,320 KB
testcase_20 AC 73 ms
76,012 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 232 ms
93,200 KB
testcase_27 AC 113 ms
86,884 KB
testcase_28 AC 144 ms
88,712 KB
testcase_29 AC 60 ms
69,240 KB
testcase_30 AC 59 ms
70,096 KB
testcase_31 AC 60 ms
70,448 KB
testcase_32 AC 189 ms
92,688 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 #

import sys
input = sys.stdin.readline

n = int(input())
a = list(map(int, input().split()))
x = 0

for ai in a:
    x ^= ai

t = 1 if x!=0 else 0
print(t)
turn = 0

while True:
    if turn^t:
        for i in range(n):
            if a[i]>x^a[i]:
                k = a[i]-(x^a[i])
                print(i+1, k)
                sys.stdout.flush()
                x ^= a[i]
                a[i] -= k
                x ^= a[i]
                break
    else:
        i, k = map(int, input().split())
        x ^= a[i-1]
        a[i-1] -= k
        x ^= a[i-1]
    
    ret = int(input())
    
    if ret==-1:
        exit()
    
    turn ^= 1
0