結果

問題 No.2165 Let's Play Nim!
ユーザー 👑 KazunKazun
提出日時 2022-12-16 00:51:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 94,244 KB
平均クエリ数 884.90
最終ジャッジ日時 2024-04-27 00:51:24
合計ジャッジ時間 16,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
70,136 KB
testcase_01 AC 210 ms
93,368 KB
testcase_02 AC 217 ms
93,592 KB
testcase_03 AC 178 ms
93,636 KB
testcase_04 AC 69 ms
76,716 KB
testcase_05 AC 104 ms
93,848 KB
testcase_06 AC 107 ms
93,340 KB
testcase_07 AC 85 ms
86,648 KB
testcase_08 AC 181 ms
93,884 KB
testcase_09 AC 65 ms
79,124 KB
testcase_10 AC 111 ms
93,888 KB
testcase_11 AC 214 ms
93,684 KB
testcase_12 AC 204 ms
93,852 KB
testcase_13 AC 57 ms
77,120 KB
testcase_14 AC 102 ms
93,672 KB
testcase_15 AC 62 ms
77,828 KB
testcase_16 AC 201 ms
93,888 KB
testcase_17 AC 144 ms
93,236 KB
testcase_18 AC 268 ms
94,244 KB
testcase_19 AC 59 ms
77,024 KB
testcase_20 AC 83 ms
86,072 KB
testcase_21 AC 144 ms
93,376 KB
testcase_22 AC 144 ms
93,624 KB
testcase_23 AC 125 ms
93,336 KB
testcase_24 AC 111 ms
93,296 KB
testcase_25 AC 160 ms
93,132 KB
testcase_26 AC 226 ms
93,672 KB
testcase_27 AC 141 ms
93,348 KB
testcase_28 AC 154 ms
93,392 KB
testcase_29 AC 53 ms
69,600 KB
testcase_30 AC 50 ms
69,348 KB
testcase_31 AC 51 ms
70,188 KB
testcase_32 AC 152 ms
93,092 KB
evil_2_big_1.txt AC 1,424 ms
98,932 KB
evil_2_big_2.txt AC 1,673 ms
108,624 KB
evil_2_big_3.txt AC 1,402 ms
98,964 KB
evil_big_1.txt AC 1,633 ms
105,308 KB
evil_big_2.txt AC 1,644 ms
111,320 KB
evil_big_3.txt AC 1,624 ms
109,948 KB
権限があれば一括ダウンロードができます

ソースコード

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 bit(x,k):
    return (x>>k)&1

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

    grundy=0; B=17
    S=[set([i for i in range(1,N+1) if bit(A[i],t)]) for t in range(B)]

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

    turn=1 if grundy else 0
    choice(turn)

    while True:
        if turn:
            msb=grundy.bit_length()-1
            i=S[msb].pop()
            a=A[i]
            b=grundy^A[i]
            k=A[i]-b

            send(i,k)
        else:
            i,k=recieve()

        for t in range(B):
            S[t].discard(i)

        grundy^=A[i]^(A[i]-k)
        A[i]-=k

        for t in range(B):
            if bit(A[i],t):
                S[t].add(i)

        if phase()==-1:
            return
        turn^=1

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