結果

問題 No.1506 Unbalanced Pocky Game
ユーザー da_abda_ab
提出日時 2021-05-14 23:10:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 24,324 KB
最終ジャッジ日時 2024-10-02 04:16:16
合計ジャッジ時間 5,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 70 ms
12,664 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 52 ms
12,160 KB
testcase_09 WA -
testcase_10 AC 75 ms
13,300 KB
testcase_11 AC 46 ms
11,628 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 42 ms
11,848 KB
testcase_15 AC 45 ms
11,392 KB
testcase_16 AC 67 ms
13,128 KB
testcase_17 AC 44 ms
11,904 KB
testcase_18 AC 36 ms
11,264 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 40 ms
11,648 KB
testcase_22 AC 51 ms
12,116 KB
testcase_23 WA -
testcase_24 AC 24 ms
10,624 KB
testcase_25 AC 85 ms
14,472 KB
testcase_26 AC 105 ms
23,820 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 102 ms
23,692 KB
testcase_30 WA -
testcase_31 AC 105 ms
24,212 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 104 ms
23,600 KB
testcase_35 AC 105 ms
23,468 KB
testcase_36 AC 27 ms
10,496 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 25 ms
10,752 KB
testcase_41 AC 24 ms
10,496 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 25 ms
10,496 KB
testcase_45 WA -
testcase_46 AC 53 ms
14,816 KB
testcase_47 AC 34 ms
12,032 KB
testcase_48 WA -
testcase_49 AC 59 ms
15,912 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 48 ms
15,148 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 33 ms
12,024 KB
testcase_57 AC 51 ms
15,712 KB
testcase_58 WA -
testcase_59 AC 29 ms
11,392 KB
testcase_60 AC 40 ms
13,232 KB
testcase_61 AC 48 ms
14,972 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 AC 55 ms
15,976 KB
testcase_65 AC 41 ms
13,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#1506 Unbalanced Pocky Game

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

cntCont=0
isReverse=False
for el in A:
    if el==1:
        cntCont+=1
    else:
        if cntCont>1 and cntCont%2==0:
            isReverse=not isReverse
        cntCont=0

if A[-1]!=1:
    if not isReverse:
        print('Alice')
    else:
        print('Bob')
else:
    if not isReverse:
        print('Bob')
    else:
        print('Alice')


0