結果
| 問題 |
No.1506 Unbalanced Pocky Game
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-03-15 22:43:06 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 79 ms / 2,000 ms |
| コード長 | 313 bytes |
| コンパイル時間 | 194 ms |
| コンパイル使用メモリ | 82,924 KB |
| 実行使用メモリ | 102,860 KB |
| 最終ジャッジ日時 | 2024-09-22 14:58:40 |
| 合計ジャッジ時間 | 5,617 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 63 |
ソースコード
N = int(input())
A = list(map(int,input().split()))
right = N - 1
count = 0
while right >= 0 and A[right] == 1:
right -= 1
count += 1
if count == N:
if N % 2 == 1:
print('Alice')
else:
print('Bob')
else:
if count % 2 == 1:
print('Bob')
else:
print('Alice')