結果

問題 No.1506 Unbalanced Pocky Game
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-08 00:02:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-11-08 00:02:39
合計ジャッジ時間 8,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 49 ms
60,416 KB
testcase_04 WA -
testcase_05 AC 73 ms
84,864 KB
testcase_06 AC 62 ms
74,752 KB
testcase_07 AC 59 ms
70,016 KB
testcase_08 WA -
testcase_09 AC 74 ms
85,120 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 58 ms
68,352 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 56 ms
67,968 KB
testcase_16 AC 76 ms
86,272 KB
testcase_17 AC 60 ms
71,424 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 58 ms
69,120 KB
testcase_22 AC 68 ms
77,440 KB
testcase_23 AC 41 ms
51,712 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 101 ms
102,656 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 99 ms
103,552 KB
testcase_32 AC 99 ms
103,424 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 42 ms
51,712 KB
testcase_45 WA -
testcase_46 AC 68 ms
75,008 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 70 ms
76,928 KB
testcase_52 AC 66 ms
73,216 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 55 ms
62,464 KB
testcase_60 WA -
testcase_61 AC 66 ms
74,496 KB
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
f=0
for v in a:
	if f:
		if v>1:
			f^=1
	else:
		f^=1
print(["Bob","Alice"][f])
0