結果
| 問題 |
No.1506 Unbalanced Pocky Game
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-01-10 08:11:29 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 89 ms / 2,000 ms |
| コード長 | 198 bytes |
| コンパイル時間 | 323 ms |
| コンパイル使用メモリ | 82,228 KB |
| 実行使用メモリ | 102,452 KB |
| 最終ジャッジ日時 | 2025-01-10 08:11:40 |
| 合計ジャッジ時間 | 8,583 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 63 |
ソースコード
N = int(input())
A = list(map(int,input().split()))
A[0] = 2
cnt = 0
for i in range(N-1,-1,-1):
if A[i]==1:
cnt += 1
else:break
if cnt%2==0:
print("Alice")
else:
print("Bob")