結果

問題 No.1506 Unbalanced Pocky Game
ユーザー otsunekootsuneko
提出日時 2021-05-14 23:44:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 102,808 KB
最終ジャッジ日時 2024-10-02 05:57:12
合計ジャッジ時間 5,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,484 KB
testcase_01 AC 41 ms
52,248 KB
testcase_02 AC 40 ms
52,976 KB
testcase_03 WA -
testcase_04 AC 62 ms
81,784 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 52 ms
75,356 KB
testcase_09 WA -
testcase_10 AC 63 ms
87,176 KB
testcase_11 AC 48 ms
70,500 KB
testcase_12 WA -
testcase_13 AC 42 ms
63,740 KB
testcase_14 AC 47 ms
70,432 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 46 ms
67,196 KB
testcase_19 AC 43 ms
64,716 KB
testcase_20 AC 63 ms
88,904 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 36 ms
52,240 KB
testcase_24 AC 36 ms
52,672 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 78 ms
101,328 KB
testcase_28 AC 77 ms
101,180 KB
testcase_29 AC 79 ms
101,264 KB
testcase_30 AC 79 ms
102,512 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 78 ms
100,768 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 37 ms
53,360 KB
testcase_40 WA -
testcase_41 AC 36 ms
52,420 KB
testcase_42 AC 37 ms
52,672 KB
testcase_43 AC 37 ms
52,944 KB
testcase_44 AC 36 ms
52,064 KB
testcase_45 AC 36 ms
52,612 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 44 ms
64,884 KB
testcase_49 AC 54 ms
75,796 KB
testcase_50 AC 52 ms
73,736 KB
testcase_51 WA -
testcase_52 AC 50 ms
71,456 KB
testcase_53 AC 57 ms
79,200 KB
testcase_54 WA -
testcase_55 AC 43 ms
64,100 KB
testcase_56 AC 44 ms
63,032 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 40 ms
61,712 KB
testcase_60 WA -
testcase_61 AC 51 ms
72,804 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 54 ms
75,368 KB
testcase_65 AC 46 ms
68,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N == 1:
    print("Alice")
elif N == 2:
    if A[1] == 1:
        print("Bob")
    else:
        print("Alice")
else:
    if A[1] == 1:
        if A[2] > 1:
            print("Alice")
        else:
            print("Bob")
    elif A[1] > 1:
        if A[2] == 1:
            print("Bob")
        else:
            print("Alice")
0