結果

問題 No.1506 Unbalanced Pocky Game
ユーザー ああいいああいい
提出日時 2022-03-15 22:43:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,924 KB
実行使用メモリ 102,860 KB
最終ジャッジ日時 2024-09-22 14:58:40
合計ジャッジ時間 5,617 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,932 KB
testcase_01 AC 39 ms
52,092 KB
testcase_02 AC 37 ms
52,488 KB
testcase_03 AC 42 ms
60,716 KB
testcase_04 AC 59 ms
82,868 KB
testcase_05 AC 63 ms
85,636 KB
testcase_06 AC 53 ms
75,512 KB
testcase_07 AC 50 ms
70,776 KB
testcase_08 AC 54 ms
75,800 KB
testcase_09 AC 66 ms
87,120 KB
testcase_10 AC 64 ms
88,660 KB
testcase_11 AC 49 ms
71,116 KB
testcase_12 AC 49 ms
69,724 KB
testcase_13 AC 43 ms
63,488 KB
testcase_14 AC 49 ms
70,656 KB
testcase_15 AC 48 ms
67,568 KB
testcase_16 AC 62 ms
86,060 KB
testcase_17 AC 50 ms
71,276 KB
testcase_18 AC 46 ms
66,680 KB
testcase_19 AC 45 ms
65,316 KB
testcase_20 AC 63 ms
87,980 KB
testcase_21 AC 47 ms
68,768 KB
testcase_22 AC 55 ms
77,492 KB
testcase_23 AC 37 ms
52,952 KB
testcase_24 AC 37 ms
52,108 KB
testcase_25 AC 70 ms
96,744 KB
testcase_26 AC 79 ms
102,860 KB
testcase_27 AC 79 ms
102,292 KB
testcase_28 AC 78 ms
101,996 KB
testcase_29 AC 78 ms
101,808 KB
testcase_30 AC 79 ms
102,388 KB
testcase_31 AC 79 ms
101,608 KB
testcase_32 AC 79 ms
102,232 KB
testcase_33 AC 78 ms
101,720 KB
testcase_34 AC 77 ms
101,528 KB
testcase_35 AC 78 ms
100,888 KB
testcase_36 AC 38 ms
53,012 KB
testcase_37 AC 38 ms
53,620 KB
testcase_38 AC 38 ms
52,612 KB
testcase_39 AC 38 ms
52,392 KB
testcase_40 AC 37 ms
53,348 KB
testcase_41 AC 38 ms
52,464 KB
testcase_42 AC 38 ms
52,288 KB
testcase_43 AC 37 ms
52,804 KB
testcase_44 AC 37 ms
52,572 KB
testcase_45 AC 37 ms
53,096 KB
testcase_46 AC 53 ms
73,128 KB
testcase_47 AC 44 ms
63,248 KB
testcase_48 AC 45 ms
65,300 KB
testcase_49 AC 55 ms
75,780 KB
testcase_50 AC 53 ms
72,892 KB
testcase_51 AC 56 ms
75,152 KB
testcase_52 AC 52 ms
71,848 KB
testcase_53 AC 58 ms
79,252 KB
testcase_54 AC 47 ms
66,092 KB
testcase_55 AC 43 ms
63,408 KB
testcase_56 AC 43 ms
63,012 KB
testcase_57 AC 54 ms
73,968 KB
testcase_58 AC 43 ms
64,340 KB
testcase_59 AC 43 ms
62,452 KB
testcase_60 AC 48 ms
68,096 KB
testcase_61 AC 53 ms
73,004 KB
testcase_62 AC 50 ms
70,360 KB
testcase_63 AC 46 ms
67,364 KB
testcase_64 AC 54 ms
74,960 KB
testcase_65 AC 47 ms
67,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

right = N - 1
count = 0
while right >= 0 and A[right] == 1:
    right -= 1
    count += 1
if count == N:
    if N % 2 == 1:
        print('Alice')
    else:
        print('Bob')
else:
    if count % 2 == 1:
        print('Bob')
    else:
        print('Alice')
0