結果

問題 No.1506 Unbalanced Pocky Game
ユーザー tpynerivertpyneriver
提出日時 2021-05-14 22:11:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 105,200 KB
最終ジャッジ日時 2024-10-02 01:28:35
合計ジャッジ時間 5,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
53,480 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 60 ms
81,776 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 54 ms
76,852 KB
testcase_09 WA -
testcase_10 AC 64 ms
88,588 KB
testcase_11 AC 50 ms
71,072 KB
testcase_12 WA -
testcase_13 AC 45 ms
64,504 KB
testcase_14 AC 50 ms
72,408 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 49 ms
68,256 KB
testcase_19 AC 46 ms
67,372 KB
testcase_20 AC 66 ms
92,208 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 38 ms
52,528 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 84 ms
103,360 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 131 ms
104,788 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 87 ms
104,636 KB
testcase_34 AC 131 ms
104,528 KB
testcase_35 AC 131 ms
104,716 KB
testcase_36 AC 37 ms
53,196 KB
testcase_37 AC 38 ms
52,388 KB
testcase_38 WA -
testcase_39 AC 36 ms
53,496 KB
testcase_40 AC 36 ms
52,948 KB
testcase_41 WA -
testcase_42 AC 37 ms
52,644 KB
testcase_43 AC 36 ms
53,088 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 51 ms
70,460 KB
testcase_48 AC 55 ms
74,296 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 89 ms
88,444 KB
testcase_54 AC 58 ms
75,288 KB
testcase_55 WA -
testcase_56 AC 47 ms
65,432 KB
testcase_57 AC 78 ms
84,024 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 50 ms
70,920 KB
testcase_61 WA -
testcase_62 AC 71 ms
81,568 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N = int(readline())

A = list(map(int, readline().split()))

al = False
for a in A:
    if a == 1:
        al ^= 1
    else:
        al = True

print("ALice" if al else "Bob")
0