結果
問題 | No.1716 Bonus Nim |
ユーザー | wolgnik |
提出日時 | 2021-10-22 23:35:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 338 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 127,776 KB |
最終ジャッジ日時 | 2024-09-24 06:21:15 |
合計ジャッジ時間 | 4,332 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,212 KB |
testcase_01 | AC | 33 ms
52,132 KB |
testcase_02 | AC | 32 ms
53,236 KB |
testcase_03 | AC | 34 ms
52,600 KB |
testcase_04 | AC | 121 ms
110,236 KB |
testcase_05 | AC | 128 ms
115,136 KB |
testcase_06 | AC | 122 ms
111,196 KB |
testcase_07 | AC | 120 ms
105,224 KB |
testcase_08 | AC | 120 ms
109,964 KB |
testcase_09 | AC | 126 ms
107,832 KB |
testcase_10 | AC | 120 ms
109,488 KB |
testcase_11 | AC | 126 ms
107,524 KB |
testcase_12 | AC | 121 ms
107,564 KB |
testcase_13 | AC | 139 ms
127,776 KB |
testcase_14 | AC | 128 ms
119,640 KB |
testcase_15 | AC | 176 ms
77,120 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
import sys input = sys.stdin.readline for _ in range(int(input())): N = int(input()) a = list(map(int, input().split())) if N & 1: print("Alice") else: nim = 0 for x in a: nim ^= x - 1 if nim == 0: print("Bob") continue nim = 0 for x in a: nim ^= x if nim: print("Alice") else: print("Bob")