結果

問題 No.1506 Unbalanced Pocky Game
ユーザー googol_S0googol_S0
提出日時 2021-05-14 22:25:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,376 KB
最終ジャッジ日時 2024-10-02 02:02:59
合計ジャッジ時間 5,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,328 KB
testcase_01 WA -
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 43 ms
59,776 KB
testcase_04 AC 61 ms
82,048 KB
testcase_05 AC 66 ms
84,736 KB
testcase_06 AC 55 ms
74,624 KB
testcase_07 AC 52 ms
70,144 KB
testcase_08 AC 56 ms
74,624 KB
testcase_09 AC 66 ms
84,992 KB
testcase_10 AC 67 ms
88,192 KB
testcase_11 AC 52 ms
70,128 KB
testcase_12 AC 51 ms
68,608 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 38 ms
51,584 KB
testcase_24 AC 37 ms
51,456 KB
testcase_25 AC 72 ms
95,488 KB
testcase_26 AC 83 ms
101,120 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 81 ms
100,608 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 82 ms
100,608 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 35 ms
51,840 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 37 ms
51,968 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 37 ms
51,712 KB
testcase_45 AC 37 ms
51,584 KB
testcase_46 AC 55 ms
72,448 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 57 ms
74,624 KB
testcase_50 AC 56 ms
72,448 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 45 ms
62,848 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 45 ms
62,336 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 48 ms
65,536 KB
testcase_64 AC 57 ms
74,368 KB
testcase_65 AC 50 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
if N==1 or A[-1]>1:
  print('Alice')
else:
  c=1
  for i in range(N-2,-1,-1):
    if A[i]==1:
      c+=1
    else:
      break
  if c&1:
    print('Alice')
  else:
    print('Bob')
0