結果

問題 No.1506 Unbalanced Pocky Game
ユーザー nasubi24nasubi24
提出日時 2021-05-14 22:16:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 102,212 KB
最終ジャッジ日時 2024-10-02 01:40:44
合計ジャッジ時間 6,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 45 ms
60,224 KB
testcase_04 AC 62 ms
81,664 KB
testcase_05 AC 71 ms
85,120 KB
testcase_06 AC 60 ms
74,752 KB
testcase_07 AC 58 ms
69,888 KB
testcase_08 AC 58 ms
75,264 KB
testcase_09 AC 66 ms
85,888 KB
testcase_10 AC 72 ms
87,936 KB
testcase_11 AC 56 ms
70,272 KB
testcase_12 AC 55 ms
68,864 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 52 ms
71,040 KB
testcase_18 AC 48 ms
65,664 KB
testcase_19 AC 48 ms
64,256 KB
testcase_20 AC 72 ms
87,168 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 41 ms
51,840 KB
testcase_24 AC 42 ms
51,712 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 84 ms
100,352 KB
testcase_30 WA -
testcase_31 AC 83 ms
101,632 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 90 ms
100,096 KB
testcase_36 AC 42 ms
52,096 KB
testcase_37 WA -
testcase_38 AC 41 ms
51,968 KB
testcase_39 AC 41 ms
52,212 KB
testcase_40 AC 41 ms
52,224 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 40 ms
51,584 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 47 ms
62,592 KB
testcase_48 AC 48 ms
64,384 KB
testcase_49 AC 61 ms
74,752 KB
testcase_50 AC 57 ms
72,576 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 60 ms
78,592 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 50 ms
62,208 KB
testcase_59 WA -
testcase_60 AC 55 ms
66,816 KB
testcase_61 WA -
testcase_62 AC 53 ms
68,992 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
権限があれば一括ダウンロードができます

ソースコード

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
num=n-cnt
if cnt%2==0:
    if num==0:
        print("Bob")
    else:
        print("Alice")
else:
    if num!=0:
        print("Bob")
    else:
        print("Alice")
0