結果
| 問題 | No.1716 Bonus Nim |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-09-25 12:06:21 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 177 bytes |
| 記録 | |
| コンパイル時間 | 131 ms |
| コンパイル使用メモリ | 85,160 KB |
| 実行使用メモリ | 136,796 KB |
| 最終ジャッジ日時 | 2026-04-11 09:07:19 |
| 合計ジャッジ時間 | 3,831 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 25 |
ソースコード
# 嘘
T = int(input())
for _ in range(T):
N = int(input())
As = list(map(int, input().split()))
if N % 2 == 1:
print("Alice")
else:
print("Bob")