結果
問題 | No.2165 Let's Play Nim! |
ユーザー | meruuu61779999 |
提出日時 | 2023-04-13 00:08:10 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 771 bytes |
コンパイル時間 | 1,435 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 192,492 KB |
平均クエリ数 | 0.08 |
最終ジャッジ日時 | 2024-10-09 01:19:40 |
合計ジャッジ時間 | 3,902 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
68,364 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
evil_2_big_1.txt | -- | - |
evil_2_big_2.txt | -- | - |
evil_2_big_3.txt | -- | - |
evil_big_1.txt | -- | - |
evil_big_2.txt | -- | - |
evil_big_3.txt | -- | - |
ソースコード
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 a,i in B: 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()