結果
| 問題 |
No.1506 Unbalanced Pocky Game
|
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2025-01-30 22:19:20 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 144 bytes |
| コンパイル時間 | 484 ms |
| コンパイル使用メモリ | 82,512 KB |
| 実行使用メモリ | 105,520 KB |
| 最終ジャッジ日時 | 2025-01-30 22:19:28 |
| 合計ジャッジ時間 | 7,485 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 39 WA * 24 |
ソースコード
N = int(input())
tmp = 1
for a in list(map(int,input().split()))[1:]:
tmp ^= (a % 2)
if tmp == 0:
print("Bob")
else:
print("Alice")
ntuda