結果

問題 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
コンパイル時間 77 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,436 KB
最終ジャッジ日時 2024-04-10 02:15:10
合計ジャッジ時間 4,898 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 51 ms
12,884 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
12,148 KB
testcase_09 WA -
testcase_10 AC 57 ms
13,396 KB
testcase_11 AC 39 ms
11,724 KB
testcase_12 WA -
testcase_13 AC 34 ms
11,136 KB
testcase_14 AC 40 ms
11,820 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 35 ms
11,520 KB
testcase_19 AC 33 ms
11,264 KB
testcase_20 AC 56 ms
13,264 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 28 ms
10,624 KB
testcase_25 AC 63 ms
14,568 KB
testcase_26 AC 88 ms
24,052 KB
testcase_27 AC 85 ms
24,160 KB
testcase_28 WA -
testcase_29 AC 84 ms
23,804 KB
testcase_30 AC 87 ms
24,296 KB
testcase_31 WA -
testcase_32 AC 86 ms
24,036 KB
testcase_33 AC 87 ms
23,904 KB
testcase_34 AC 84 ms
23,704 KB
testcase_35 AC 86 ms
23,568 KB
testcase_36 AC 28 ms
10,624 KB
testcase_37 AC 28 ms
10,752 KB
testcase_38 AC 27 ms
10,752 KB
testcase_39 AC 29 ms
10,624 KB
testcase_40 AC 27 ms
10,624 KB
testcase_41 AC 28 ms
10,752 KB
testcase_42 AC 28 ms
10,624 KB
testcase_43 AC 28 ms
10,624 KB
testcase_44 AC 28 ms
10,624 KB
testcase_45 AC 27 ms
10,624 KB
testcase_46 AC 49 ms
14,792 KB
testcase_47 AC 34 ms
12,032 KB
testcase_48 AC 36 ms
12,404 KB
testcase_49 AC 52 ms
16,324 KB
testcase_50 AC 50 ms
15,120 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 58 ms
17,180 KB
testcase_54 AC 40 ms
12,980 KB
testcase_55 AC 35 ms
12,160 KB
testcase_56 AC 36 ms
12,032 KB
testcase_57 AC 49 ms
15,688 KB
testcase_58 AC 34 ms
12,160 KB
testcase_59 WA -
testcase_60 AC 40 ms
13,464 KB
testcase_61 WA -
testcase_62 AC 44 ms
14,276 KB
testcase_63 AC 39 ms
13,312 KB
testcase_64 AC 53 ms
16,204 KB
testcase_65 AC 43 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