結果

問題 No.1506 Unbalanced Pocky Game
ユーザー nasubi24nasubi24
提出日時 2021-05-14 22:23:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 102,004 KB
最終ジャッジ日時 2024-10-02 01:59:05
合計ジャッジ時間 5,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,560 KB
testcase_01 AC 35 ms
52,756 KB
testcase_02 AC 35 ms
52,292 KB
testcase_03 AC 42 ms
61,292 KB
testcase_04 AC 59 ms
82,912 KB
testcase_05 AC 62 ms
87,172 KB
testcase_06 AC 54 ms
75,756 KB
testcase_07 AC 50 ms
70,524 KB
testcase_08 AC 55 ms
76,728 KB
testcase_09 AC 64 ms
86,052 KB
testcase_10 AC 69 ms
88,392 KB
testcase_11 AC 50 ms
70,876 KB
testcase_12 AC 49 ms
70,244 KB
testcase_13 AC 43 ms
64,596 KB
testcase_14 AC 48 ms
70,780 KB
testcase_15 AC 45 ms
68,164 KB
testcase_16 AC 60 ms
84,760 KB
testcase_17 AC 48 ms
71,432 KB
testcase_18 AC 44 ms
66,156 KB
testcase_19 AC 42 ms
64,408 KB
testcase_20 AC 61 ms
87,556 KB
testcase_21 AC 47 ms
68,248 KB
testcase_22 AC 54 ms
78,712 KB
testcase_23 AC 36 ms
52,356 KB
testcase_24 AC 36 ms
52,872 KB
testcase_25 AC 74 ms
97,276 KB
testcase_26 AC 77 ms
101,388 KB
testcase_27 AC 78 ms
101,728 KB
testcase_28 AC 76 ms
101,508 KB
testcase_29 AC 76 ms
101,752 KB
testcase_30 AC 77 ms
101,480 KB
testcase_31 AC 77 ms
102,004 KB
testcase_32 AC 77 ms
100,668 KB
testcase_33 AC 78 ms
101,052 KB
testcase_34 AC 80 ms
102,000 KB
testcase_35 AC 79 ms
101,624 KB
testcase_36 AC 37 ms
52,360 KB
testcase_37 AC 37 ms
53,684 KB
testcase_38 AC 37 ms
52,492 KB
testcase_39 AC 36 ms
52,000 KB
testcase_40 AC 38 ms
53,004 KB
testcase_41 AC 37 ms
52,028 KB
testcase_42 AC 35 ms
52,484 KB
testcase_43 AC 36 ms
54,096 KB
testcase_44 AC 36 ms
52,820 KB
testcase_45 AC 36 ms
51,944 KB
testcase_46 AC 51 ms
73,468 KB
testcase_47 AC 42 ms
62,828 KB
testcase_48 AC 43 ms
64,256 KB
testcase_49 AC 55 ms
74,788 KB
testcase_50 AC 51 ms
72,800 KB
testcase_51 AC 53 ms
75,196 KB
testcase_52 AC 50 ms
71,412 KB
testcase_53 AC 57 ms
78,964 KB
testcase_54 AC 45 ms
66,092 KB
testcase_55 AC 43 ms
63,756 KB
testcase_56 AC 44 ms
63,024 KB
testcase_57 AC 53 ms
72,864 KB
testcase_58 AC 42 ms
64,324 KB
testcase_59 AC 41 ms
60,836 KB
testcase_60 AC 46 ms
68,412 KB
testcase_61 AC 52 ms
72,844 KB
testcase_62 AC 50 ms
70,388 KB
testcase_63 AC 45 ms
66,140 KB
testcase_64 AC 52 ms
75,608 KB
testcase_65 AC 46 ms
68,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
cnt=n
for i in range(n):
    if a[i]!=1:
        cnt=i+1
        break
cnt2=n
for i in range(n-1,-1,-1):
    if a[i]!=1:
        cnt2=n-i-1
        break
num=n-cnt
if cnt2==n:
    if n%2==0:
        print("Bob")
    else:
        print("Alice")
elif cnt2%2==0:
    print("Alice")
else:
    print("Bob")
0