結果

問題 No.2165 Let's Play Nim!
ユーザー 👑 KazunKazun
提出日時 2022-12-16 00:51:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 94,188 KB
平均クエリ数 884.90
最終ジャッジ日時 2024-11-14 17:11:54
合計ジャッジ時間 17,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,216 KB
testcase_01 AC 237 ms
93,684 KB
testcase_02 AC 247 ms
93,532 KB
testcase_03 AC 208 ms
93,436 KB
testcase_04 AC 66 ms
78,024 KB
testcase_05 AC 124 ms
93,644 KB
testcase_06 AC 124 ms
93,368 KB
testcase_07 AC 99 ms
87,384 KB
testcase_08 AC 207 ms
93,380 KB
testcase_09 AC 75 ms
78,424 KB
testcase_10 AC 128 ms
93,888 KB
testcase_11 AC 248 ms
93,960 KB
testcase_12 AC 231 ms
93,444 KB
testcase_13 AC 67 ms
76,156 KB
testcase_14 AC 119 ms
93,624 KB
testcase_15 AC 74 ms
78,396 KB
testcase_16 AC 222 ms
93,580 KB
testcase_17 AC 169 ms
93,460 KB
testcase_18 AC 298 ms
94,188 KB
testcase_19 AC 67 ms
76,512 KB
testcase_20 AC 95 ms
86,340 KB
testcase_21 AC 157 ms
93,068 KB
testcase_22 AC 139 ms
93,592 KB
testcase_23 AC 140 ms
92,960 KB
testcase_24 AC 131 ms
93,604 KB
testcase_25 AC 189 ms
93,240 KB
testcase_26 AC 247 ms
93,752 KB
testcase_27 AC 152 ms
93,364 KB
testcase_28 AC 179 ms
93,732 KB
testcase_29 AC 61 ms
70,296 KB
testcase_30 AC 60 ms
69,420 KB
testcase_31 AC 59 ms
69,632 KB
testcase_32 AC 175 ms
93,388 KB
evil_2_big_1.txt AC 1,575 ms
99,148 KB
evil_2_big_2.txt AC 1,800 ms
108,968 KB
evil_2_big_3.txt AC 1,557 ms
98,676 KB
evil_big_1.txt AC 1,784 ms
105,372 KB
evil_big_2.txt AC 1,852 ms
111,444 KB
evil_big_3.txt AC 1,849 ms
110,544 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