結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 38 ms
52,236 KB
testcase_02 AC 40 ms
51,936 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 46 ms
63,400 KB
testcase_14 AC 53 ms
71,388 KB
testcase_15 AC 50 ms
69,932 KB
testcase_16 AC 70 ms
89,436 KB
testcase_17 AC 53 ms
73,368 KB
testcase_18 AC 48 ms
67,472 KB
testcase_19 AC 46 ms
65,624 KB
testcase_20 AC 71 ms
92,552 KB
testcase_21 AC 50 ms
70,752 KB
testcase_22 AC 60 ms
80,688 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 79 ms
103,864 KB
testcase_26 AC 86 ms
107,716 KB
testcase_27 AC 86 ms
107,068 KB
testcase_28 AC 90 ms
106,512 KB
testcase_29 AC 87 ms
106,620 KB
testcase_30 AC 88 ms
107,232 KB
testcase_31 AC 86 ms
106,896 KB
testcase_32 AC 87 ms
107,828 KB
testcase_33 AC 87 ms
106,632 KB
testcase_34 AC 86 ms
105,856 KB
testcase_35 AC 86 ms
106,016 KB
testcase_36 AC 37 ms
52,156 KB
testcase_37 AC 37 ms
52,476 KB
testcase_38 AC 37 ms
52,080 KB
testcase_39 AC 36 ms
52,764 KB
testcase_40 AC 38 ms
52,208 KB
testcase_41 AC 37 ms
52,116 KB
testcase_42 AC 37 ms
52,944 KB
testcase_43 AC 37 ms
52,564 KB
testcase_44 AC 37 ms
52,280 KB
testcase_45 AC 37 ms
53,056 KB
testcase_46 AC 56 ms
74,416 KB
testcase_47 AC 48 ms
64,484 KB
testcase_48 AC 47 ms
66,056 KB
testcase_49 AC 59 ms
77,796 KB
testcase_50 AC 56 ms
74,376 KB
testcase_51 AC 59 ms
77,156 KB
testcase_52 AC 54 ms
73,356 KB
testcase_53 AC 63 ms
81,200 KB
testcase_54 AC 48 ms
66,632 KB
testcase_55 AC 45 ms
64,356 KB
testcase_56 AC 44 ms
63,144 KB
testcase_57 AC 56 ms
74,576 KB
testcase_58 AC 44 ms
63,936 KB
testcase_59 AC 42 ms
60,556 KB
testcase_60 AC 50 ms
69,136 KB
testcase_61 AC 57 ms
74,532 KB
testcase_62 AC 55 ms
71,040 KB
testcase_63 AC 50 ms
66,736 KB
testcase_64 AC 59 ms
77,368 KB
testcase_65 AC 50 ms
68,812 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