結果
| 問題 | No.1716 Bonus Nim |
| コンテスト | |
| ユーザー |
wolgnik
|
| 提出日時 | 2021-10-22 22:41:55 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 172 bytes |
| 記録 | |
| コンパイル時間 | 237 ms |
| コンパイル使用メモリ | 96,084 KB |
| 実行使用メモリ | 140,888 KB |
| 最終ジャッジ日時 | 2026-09-03 00:40:22 |
| 合計ジャッジ時間 | 7,338 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 25 |
ソースコード
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: print("Bob")
wolgnik