結果

問題 No.1506 Unbalanced Pocky Game
ユーザー O2MTO2MT
提出日時 2021-05-15 15:32:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 105,268 KB
最終ジャッジ日時 2024-10-03 03:40:04
合計ジャッジ時間 6,461 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 44 ms
59,904 KB
testcase_04 WA -
testcase_05 AC 61 ms
84,736 KB
testcase_06 AC 57 ms
74,624 KB
testcase_07 AC 48 ms
69,888 KB
testcase_08 WA -
testcase_09 AC 62 ms
85,120 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 48 ms
68,864 KB
testcase_13 AC 42 ms
62,976 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 62 ms
85,504 KB
testcase_17 WA -
testcase_18 AC 46 ms
66,688 KB
testcase_19 AC 45 ms
64,512 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 58 ms
77,312 KB
testcase_23 AC 37 ms
51,328 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 83 ms
102,144 KB
testcase_27 WA -
testcase_28 AC 81 ms
101,888 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 81 ms
101,888 KB
testcase_36 AC 36 ms
51,840 KB
testcase_37 WA -
testcase_38 AC 36 ms
51,456 KB
testcase_39 WA -
testcase_40 AC 36 ms
51,584 KB
testcase_41 WA -
testcase_42 AC 36 ms
51,840 KB
testcase_43 WA -
testcase_44 AC 36 ms
51,328 KB
testcase_45 AC 36 ms
51,712 KB
testcase_46 AC 55 ms
73,856 KB
testcase_47 WA -
testcase_48 AC 45 ms
65,152 KB
testcase_49 AC 57 ms
75,648 KB
testcase_50 WA -
testcase_51 AC 58 ms
75,520 KB
testcase_52 AC 52 ms
72,192 KB
testcase_53 AC 60 ms
80,256 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 44 ms
64,716 KB
testcase_57 AC 53 ms
73,856 KB
testcase_58 AC 46 ms
63,488 KB
testcase_59 AC 43 ms
61,440 KB
testcase_60 WA -
testcase_61 AC 54 ms
73,600 KB
testcase_62 AC 51 ms
70,912 KB
testcase_63 AC 47 ms
67,200 KB
testcase_64 AC 56 ms
75,904 KB
testcase_65 AC 48 ms
68,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
players = ['Alice', 'Bob']
idx = 0
for a in A:
  if a != 1:
    idx ^= 1
print(players[idx])
0