結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
70,112 KB
testcase_01 AC 301 ms
93,768 KB
testcase_02 AC 277 ms
94,408 KB
testcase_03 AC 226 ms
93,768 KB
testcase_04 AC 74 ms
71,112 KB
testcase_05 AC 97 ms
79,944 KB
testcase_06 AC 93 ms
78,920 KB
testcase_07 AC 89 ms
78,152 KB
testcase_08 AC 233 ms
93,776 KB
testcase_09 AC 75 ms
71,120 KB
testcase_10 AC 119 ms
87,888 KB
testcase_11 AC 279 ms
93,896 KB
testcase_12 AC 255 ms
93,768 KB
testcase_13 AC 72 ms
70,728 KB
testcase_14 AC 90 ms
78,536 KB
testcase_15 AC 73 ms
71,112 KB
testcase_16 AC 254 ms
94,400 KB
testcase_17 AC 191 ms
93,896 KB
testcase_18 AC 334 ms
94,024 KB
testcase_19 AC 74 ms
71,504 KB
testcase_20 AC 87 ms
77,264 KB
testcase_21 AC 179 ms
94,168 KB
testcase_22 AC 162 ms
93,144 KB
testcase_23 AC 159 ms
93,528 KB
testcase_24 AC 144 ms
93,016 KB
testcase_25 AC 211 ms
93,656 KB
testcase_26 AC 277 ms
94,152 KB
testcase_27 AC 165 ms
93,384 KB
testcase_28 AC 212 ms
93,512 KB
testcase_29 AC 69 ms
71,008 KB
testcase_30 AC 67 ms
69,984 KB
testcase_31 AC 67 ms
70,368 KB
testcase_32 AC 243 ms
94,560 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