結果

問題 No.1506 Unbalanced Pocky Game
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-17 19:47:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 102,256 KB
最終ジャッジ日時 2024-10-06 23:04:54
合計ジャッジ時間 5,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,184 KB
testcase_01 AC 36 ms
52,960 KB
testcase_02 AC 36 ms
52,556 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 42 ms
63,384 KB
testcase_14 AC 48 ms
69,328 KB
testcase_15 AC 46 ms
68,444 KB
testcase_16 AC 61 ms
85,624 KB
testcase_17 AC 49 ms
72,304 KB
testcase_18 AC 44 ms
66,636 KB
testcase_19 AC 44 ms
65,012 KB
testcase_20 AC 62 ms
88,064 KB
testcase_21 AC 46 ms
68,252 KB
testcase_22 AC 54 ms
77,072 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 71 ms
95,808 KB
testcase_26 AC 77 ms
101,052 KB
testcase_27 AC 77 ms
102,016 KB
testcase_28 AC 76 ms
100,416 KB
testcase_29 AC 77 ms
101,252 KB
testcase_30 AC 77 ms
101,864 KB
testcase_31 AC 79 ms
102,256 KB
testcase_32 AC 78 ms
101,316 KB
testcase_33 AC 79 ms
101,976 KB
testcase_34 AC 76 ms
101,848 KB
testcase_35 AC 77 ms
100,792 KB
testcase_36 AC 36 ms
52,224 KB
testcase_37 AC 36 ms
52,952 KB
testcase_38 AC 37 ms
53,752 KB
testcase_39 AC 36 ms
52,268 KB
testcase_40 AC 36 ms
52,508 KB
testcase_41 AC 36 ms
52,360 KB
testcase_42 AC 35 ms
53,128 KB
testcase_43 AC 35 ms
53,280 KB
testcase_44 AC 38 ms
52,852 KB
testcase_45 AC 36 ms
52,424 KB
testcase_46 AC 52 ms
73,448 KB
testcase_47 AC 42 ms
62,940 KB
testcase_48 AC 43 ms
64,848 KB
testcase_49 AC 55 ms
75,208 KB
testcase_50 AC 53 ms
73,232 KB
testcase_51 AC 53 ms
74,864 KB
testcase_52 AC 51 ms
72,204 KB
testcase_53 AC 57 ms
78,768 KB
testcase_54 AC 45 ms
65,180 KB
testcase_55 AC 42 ms
62,952 KB
testcase_56 AC 42 ms
63,624 KB
testcase_57 AC 52 ms
73,268 KB
testcase_58 AC 42 ms
62,864 KB
testcase_59 AC 41 ms
62,140 KB
testcase_60 AC 46 ms
67,100 KB
testcase_61 AC 53 ms
73,064 KB
testcase_62 AC 51 ms
69,876 KB
testcase_63 AC 46 ms
67,728 KB
testcase_64 AC 55 ms
74,560 KB
testcase_65 AC 48 ms
68,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
i = 0
while A and A[-1] == 1:
    A.pop()
    i += 1
if i%2 == 0:
    print('Alice')
else:
    print('Bob')
0