結果

問題 No.1506 Unbalanced Pocky Game
ユーザー convexineqconvexineq
提出日時 2021-05-14 22:26:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 107,364 KB
最終ジャッジ日時 2024-04-10 00:57:34
合計ジャッジ時間 5,363 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,952 KB
testcase_01 AC 32 ms
52,684 KB
testcase_02 AC 34 ms
52,336 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 38 ms
63,712 KB
testcase_14 AC 44 ms
72,532 KB
testcase_15 AC 43 ms
70,016 KB
testcase_16 AC 61 ms
89,024 KB
testcase_17 AC 48 ms
74,712 KB
testcase_18 AC 41 ms
67,416 KB
testcase_19 AC 40 ms
66,820 KB
testcase_20 AC 63 ms
93,872 KB
testcase_21 AC 48 ms
71,336 KB
testcase_22 AC 56 ms
80,088 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 75 ms
102,536 KB
testcase_26 AC 85 ms
106,456 KB
testcase_27 AC 84 ms
106,448 KB
testcase_28 AC 85 ms
106,468 KB
testcase_29 AC 86 ms
106,188 KB
testcase_30 AC 88 ms
107,172 KB
testcase_31 AC 88 ms
106,356 KB
testcase_32 AC 87 ms
107,364 KB
testcase_33 AC 88 ms
106,716 KB
testcase_34 AC 85 ms
106,352 KB
testcase_35 AC 88 ms
106,292 KB
testcase_36 AC 36 ms
53,560 KB
testcase_37 AC 34 ms
52,660 KB
testcase_38 AC 34 ms
52,356 KB
testcase_39 AC 34 ms
52,316 KB
testcase_40 AC 36 ms
52,540 KB
testcase_41 AC 33 ms
53,060 KB
testcase_42 AC 33 ms
53,368 KB
testcase_43 AC 32 ms
52,096 KB
testcase_44 AC 32 ms
52,620 KB
testcase_45 AC 32 ms
52,128 KB
testcase_46 AC 49 ms
74,568 KB
testcase_47 AC 40 ms
63,792 KB
testcase_48 AC 42 ms
65,184 KB
testcase_49 AC 53 ms
77,108 KB
testcase_50 AC 52 ms
74,960 KB
testcase_51 AC 53 ms
77,644 KB
testcase_52 AC 48 ms
74,060 KB
testcase_53 AC 58 ms
81,096 KB
testcase_54 AC 42 ms
66,840 KB
testcase_55 AC 38 ms
63,564 KB
testcase_56 AC 38 ms
63,152 KB
testcase_57 AC 53 ms
75,184 KB
testcase_58 AC 43 ms
63,944 KB
testcase_59 AC 38 ms
62,536 KB
testcase_60 AC 45 ms
68,368 KB
testcase_61 AC 49 ms
74,428 KB
testcase_62 AC 46 ms
70,900 KB
testcase_63 AC 41 ms
66,660 KB
testcase_64 AC 50 ms
77,056 KB
testcase_65 AC 44 ms
68,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a = map(int,open(0).read().split())
v = 1
while a and a[-1]==1:
    a.pop()
    v ^= 1
print("Alice" if v else "Bob")
0