結果

問題 No.2165 Let's Play Nim!
ユーザー meruuu61779999meruuu61779999
提出日時 2023-04-13 00:10:53
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 783 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 99,588 KB
平均クエリ数 379.56
最終ジャッジ日時 2024-10-09 01:25:19
合計ジャッジ時間 10,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,704 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 61 ms
69,192 KB
testcase_05 AC 81 ms
77,512 KB
testcase_06 AC 78 ms
77,256 KB
testcase_07 AC 73 ms
76,104 KB
testcase_08 RE -
testcase_09 AC 63 ms
69,584 KB
testcase_10 AC 101 ms
88,144 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 61 ms
69,192 KB
testcase_14 AC 76 ms
76,964 KB
testcase_15 AC 64 ms
69,832 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 61 ms
69,072 KB
testcase_20 AC 74 ms
75,856 KB
testcase_21 AC 176 ms
94,168 KB
testcase_22 AC 145 ms
94,848 KB
testcase_23 AC 137 ms
94,552 KB
testcase_24 AC 116 ms
90,968 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 150 ms
94,536 KB
testcase_28 RE -
testcase_29 AC 62 ms
68,448 KB
testcase_30 AC 60 ms
67,680 KB
testcase_31 AC 59 ms
68,576 KB
testcase_32 RE -
evil_2_big_1.txt RE -
evil_2_big_2.txt RE -
evil_2_big_3.txt RE -
evil_big_1.txt RE -
evil_big_2.txt RE -
evil_big_3.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

nim = 0
for a in A:
    nim ^= a
t = 1 if nim else 0
print(t)


def my_turn(nim):
    # print('myturn')
    # print(nim)
    # print(A)
    # B = sorted([(a, i) for i, a in enumerate(A)], reverse=True)
    for i,a in enumerate(A):
        na = a ^ nim
        if na < a:
            A[i] -= a - na
            print(i + 1, a - na)
            break

    ret = int(input())
    if ret == 0:
        enemy_turn()
    else:
        exit()


def enemy_turn():
    # print("enemyturn")
    # print(A)
    idx, k = map(int, input().split())
    idx -= 1
    nim=A[idx]
    A[idx] -= k
    nim^=A[idx]

    ret = int(input())
    if ret == 0:
        my_turn(nim)
    else:
        exit()


if t:
    my_turn(nim)
else:
    enemy_turn()
0