結果

問題 No.2165 Let's Play Nim!
ユーザー 👑 KazunKazun
提出日時 2022-12-16 00:33:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 94,948 KB
平均クエリ数 863.56
最終ジャッジ日時 2024-11-14 16:45:24
合計ジャッジ時間 25,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,904 KB
testcase_01 AC 257 ms
93,876 KB
testcase_02 AC 263 ms
93,888 KB
testcase_03 AC 214 ms
94,088 KB
testcase_04 AC 68 ms
72,236 KB
testcase_05 AC 87 ms
79,792 KB
testcase_06 AC 85 ms
80,456 KB
testcase_07 AC 82 ms
78,752 KB
testcase_08 AC 218 ms
94,016 KB
testcase_09 AC 71 ms
72,732 KB
testcase_10 AC 110 ms
88,288 KB
testcase_11 AC 262 ms
93,880 KB
testcase_12 AC 244 ms
93,828 KB
testcase_13 AC 67 ms
71,440 KB
testcase_14 AC 82 ms
80,272 KB
testcase_15 AC 71 ms
73,352 KB
testcase_16 AC 238 ms
94,016 KB
testcase_17 AC 175 ms
94,040 KB
testcase_18 AC 324 ms
93,672 KB
testcase_19 AC 68 ms
73,172 KB
testcase_20 AC 80 ms
77,624 KB
testcase_21 AC 164 ms
93,616 KB
testcase_22 AC 148 ms
94,208 KB
testcase_23 AC 143 ms
93,548 KB
testcase_24 AC 131 ms
93,712 KB
testcase_25 AC 201 ms
94,016 KB
testcase_26 AC 266 ms
94,036 KB
testcase_27 AC 152 ms
93,868 KB
testcase_28 AC 181 ms
93,584 KB
testcase_29 AC 66 ms
71,604 KB
testcase_30 AC 64 ms
70,536 KB
testcase_31 AC 64 ms
71,336 KB
testcase_32 AC 227 ms
94,948 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 #

#==================================================
def send(i,k):
    print(i,k, flush=True)

def recieve():
    i,k=map(int,input().split())
    return i,k

def phase():
    return int(input())

def choice(turn):
    print(turn, flush=True)

#==================================================
def solve():
    from collections import defaultdict

    N=int(input())
    A=[0]+list(map(int,input().split()))

    grundy=0
    for a in A[1:]:
        grundy^=a

    turn=1 if grundy else 0
    choice(turn)

    while True:
        if turn:
            msb=1<<(grundy.bit_length()-1)
            for i in range(N+1):
                if msb&A[i]==msb:
                    break
            h=grundy^A[i]
            k=A[i]-h
            send(i,k)
        else:
            i,k=recieve()

        grundy^=A[i]^(A[i]-k)
        A[i]-=k
        if phase()==-1:
            return
        turn^=1

#==================================================
solve()
0