結果
| 問題 |
No.1506 Unbalanced Pocky Game
|
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2021-05-14 22:14:39 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 85 ms / 2,000 ms |
| コード長 | 160 bytes |
| コンパイル時間 | 563 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 87,688 KB |
| 最終ジャッジ日時 | 2024-10-02 01:35:58 |
| 合計ジャッジ時間 | 6,577 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 63 |
ソースコード
n = int(input())
ans = 1
for x in map(int, input().split()):
if x > 1:
ans = 0
else:
ans = 1 - ans
print('Alice' if ans == 0 else 'Bob')
Kude