結果

問題 No.1506 Unbalanced Pocky Game
ユーザー H20H20
提出日時 2021-05-15 01:44:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 107,860 KB
最終ジャッジ日時 2024-10-02 08:23:35
合計ジャッジ時間 5,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,944 KB
testcase_01 AC 41 ms
54,676 KB
testcase_02 AC 42 ms
54,488 KB
testcase_03 AC 48 ms
65,096 KB
testcase_04 AC 70 ms
90,968 KB
testcase_05 AC 79 ms
96,764 KB
testcase_06 AC 64 ms
83,796 KB
testcase_07 AC 58 ms
76,188 KB
testcase_08 AC 64 ms
83,104 KB
testcase_09 AC 80 ms
97,464 KB
testcase_10 AC 82 ms
100,196 KB
testcase_11 AC 58 ms
78,128 KB
testcase_12 AC 58 ms
75,812 KB
testcase_13 AC 49 ms
66,372 KB
testcase_14 AC 57 ms
75,804 KB
testcase_15 AC 51 ms
70,824 KB
testcase_16 AC 67 ms
91,020 KB
testcase_17 AC 55 ms
75,452 KB
testcase_18 AC 50 ms
69,768 KB
testcase_19 AC 49 ms
68,196 KB
testcase_20 AC 71 ms
94,668 KB
testcase_21 AC 53 ms
72,832 KB
testcase_22 AC 62 ms
83,620 KB
testcase_23 AC 41 ms
54,088 KB
testcase_24 AC 40 ms
54,920 KB
testcase_25 AC 92 ms
107,860 KB
testcase_26 AC 90 ms
106,524 KB
testcase_27 AC 89 ms
106,584 KB
testcase_28 AC 90 ms
107,108 KB
testcase_29 AC 90 ms
106,936 KB
testcase_30 AC 90 ms
106,444 KB
testcase_31 AC 89 ms
106,872 KB
testcase_32 AC 89 ms
106,988 KB
testcase_33 AC 92 ms
106,764 KB
testcase_34 AC 91 ms
107,024 KB
testcase_35 AC 89 ms
107,048 KB
testcase_36 AC 42 ms
54,232 KB
testcase_37 AC 41 ms
54,724 KB
testcase_38 AC 40 ms
54,836 KB
testcase_39 AC 41 ms
54,488 KB
testcase_40 AC 40 ms
53,848 KB
testcase_41 AC 41 ms
54,308 KB
testcase_42 AC 41 ms
54,576 KB
testcase_43 AC 41 ms
54,912 KB
testcase_44 AC 40 ms
55,668 KB
testcase_45 AC 42 ms
54,316 KB
testcase_46 AC 58 ms
78,160 KB
testcase_47 AC 48 ms
66,556 KB
testcase_48 AC 49 ms
67,872 KB
testcase_49 AC 61 ms
81,052 KB
testcase_50 AC 58 ms
77,700 KB
testcase_51 AC 60 ms
80,084 KB
testcase_52 AC 56 ms
76,080 KB
testcase_53 AC 63 ms
84,504 KB
testcase_54 AC 52 ms
70,000 KB
testcase_55 AC 48 ms
66,440 KB
testcase_56 AC 49 ms
66,480 KB
testcase_57 AC 58 ms
79,200 KB
testcase_58 AC 49 ms
66,084 KB
testcase_59 AC 47 ms
64,856 KB
testcase_60 AC 53 ms
70,356 KB
testcase_61 AC 58 ms
77,244 KB
testcase_62 AC 55 ms
73,392 KB
testcase_63 AC 51 ms
69,792 KB
testcase_64 AC 59 ms
79,776 KB
testcase_65 AC 53 ms
72,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
A = list(map(int, input().split()))
D = collections.deque(A)
aliceWin = False
while len(D) and D[0]==1:
    D.popleft()
    aliceWin = not aliceWin
if len(D)==0:
    if aliceWin:
        print('Alice')
    else:
        print('Bob')
    exit()

aliceWin = True 
while len(D) and D[-1]==1:
    D.pop()
    aliceWin = not aliceWin
if aliceWin:
    print('Alice')
else:
    print('Bob')
0