結果

問題 No.1506 Unbalanced Pocky Game
ユーザー da_abda_ab
提出日時 2021-05-14 22:58:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,440 KB
最終ジャッジ日時 2024-10-02 03:33:48
合計ジャッジ時間 5,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 48 ms
12,632 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
12,012 KB
testcase_09 WA -
testcase_10 AC 50 ms
13,136 KB
testcase_11 AC 35 ms
11,596 KB
testcase_12 WA -
testcase_13 AC 36 ms
11,264 KB
testcase_14 AC 42 ms
11,568 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
11,520 KB
testcase_19 AC 38 ms
11,392 KB
testcase_20 AC 58 ms
13,136 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 30 ms
10,368 KB
testcase_25 AC 70 ms
14,692 KB
testcase_26 AC 95 ms
23,796 KB
testcase_27 AC 92 ms
24,164 KB
testcase_28 WA -
testcase_29 AC 91 ms
23,672 KB
testcase_30 AC 91 ms
24,032 KB
testcase_31 WA -
testcase_32 AC 91 ms
23,776 KB
testcase_33 AC 91 ms
23,768 KB
testcase_34 AC 91 ms
23,576 KB
testcase_35 AC 90 ms
23,448 KB
testcase_36 AC 30 ms
10,496 KB
testcase_37 AC 29 ms
10,496 KB
testcase_38 AC 31 ms
10,624 KB
testcase_39 AC 30 ms
10,624 KB
testcase_40 AC 31 ms
10,624 KB
testcase_41 AC 30 ms
10,368 KB
testcase_42 AC 30 ms
10,624 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 29 ms
10,496 KB
testcase_45 AC 29 ms
10,496 KB
testcase_46 AC 51 ms
14,924 KB
testcase_47 AC 38 ms
12,032 KB
testcase_48 AC 39 ms
12,272 KB
testcase_49 AC 56 ms
15,944 KB
testcase_50 AC 51 ms
14,736 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 59 ms
16,928 KB
testcase_54 AC 40 ms
12,856 KB
testcase_55 AC 37 ms
12,032 KB
testcase_56 AC 37 ms
12,160 KB
testcase_57 AC 50 ms
15,812 KB
testcase_58 AC 32 ms
12,160 KB
testcase_59 WA -
testcase_60 AC 36 ms
13,208 KB
testcase_61 WA -
testcase_62 AC 40 ms
14,276 KB
testcase_63 AC 36 ms
13,184 KB
testcase_64 AC 46 ms
15,952 KB
testcase_65 AC 35 ms
13,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#1506 Unbalanced Pocky Game

n=int(input())
A=list(map(int,input().split()))

if A[-1]!=1:
    print('Alice')
else:
    print('Bob')


0