結果

問題 No.1506 Unbalanced Pocky Game
ユーザー marroncastlemarroncastle
提出日時 2021-05-14 22:29:32
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 338 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 110,848 KB
最終ジャッジ日時 2024-10-02 02:09:48
合計ジャッジ時間 7,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 56 ms
69,120 KB
testcase_04 AC 107 ms
101,888 KB
testcase_05 AC 108 ms
103,424 KB
testcase_06 AC 90 ms
95,360 KB
testcase_07 AC 80 ms
88,576 KB
testcase_08 AC 91 ms
95,360 KB
testcase_09 AC 110 ms
103,680 KB
testcase_10 AC 112 ms
106,240 KB
testcase_11 AC 82 ms
88,832 KB
testcase_12 AC 82 ms
87,168 KB
testcase_13 AC 71 ms
80,548 KB
testcase_14 AC 89 ms
88,832 KB
testcase_15 AC 77 ms
86,212 KB
testcase_16 AC 115 ms
102,656 KB
testcase_17 AC 86 ms
90,964 KB
testcase_18 AC 75 ms
84,352 KB
testcase_19 AC 71 ms
82,568 KB
testcase_20 AC 116 ms
105,572 KB
testcase_21 AC 81 ms
87,512 KB
testcase_22 AC 102 ms
97,408 KB
testcase_23 RE -
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 133 ms
110,848 KB
testcase_26 AC 161 ms
108,740 KB
testcase_27 AC 162 ms
108,160 KB
testcase_28 AC 154 ms
108,544 KB
testcase_29 AC 157 ms
108,288 KB
testcase_30 AC 165 ms
108,288 KB
testcase_31 AC 157 ms
108,288 KB
testcase_32 AC 155 ms
107,776 KB
testcase_33 AC 159 ms
107,904 KB
testcase_34 AC 162 ms
108,672 KB
testcase_35 AC 160 ms
108,416 KB
testcase_36 AC 40 ms
52,736 KB
testcase_37 AC 39 ms
53,248 KB
testcase_38 AC 38 ms
52,736 KB
testcase_39 AC 41 ms
52,224 KB
testcase_40 AC 39 ms
52,224 KB
testcase_41 AC 40 ms
52,352 KB
testcase_42 AC 40 ms
52,992 KB
testcase_43 AC 40 ms
52,736 KB
testcase_44 AC 38 ms
52,352 KB
testcase_45 AC 37 ms
52,096 KB
testcase_46 AC 101 ms
91,624 KB
testcase_47 AC 74 ms
80,080 KB
testcase_48 AC 77 ms
81,664 KB
testcase_49 AC 110 ms
94,124 KB
testcase_50 AC 103 ms
91,776 KB
testcase_51 AC 107 ms
93,696 KB
testcase_52 AC 92 ms
89,344 KB
testcase_53 AC 108 ms
96,896 KB
testcase_54 AC 81 ms
83,016 KB
testcase_55 AC 76 ms
80,128 KB
testcase_56 AC 78 ms
80,000 KB
testcase_57 AC 103 ms
91,876 KB
testcase_58 AC 75 ms
79,660 KB
testcase_59 AC 71 ms
77,056 KB
testcase_60 AC 85 ms
84,952 KB
testcase_61 AC 98 ms
91,648 KB
testcase_62 AC 93 ms
87,916 KB
testcase_63 AC 81 ms
83,796 KB
testcase_64 AC 101 ms
93,568 KB
testcase_65 AC 88 ms
85,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(lambda x: min(2,int(x)), input().split()))
dp = [[0]*3 for _ in range(N)]
def mex(lis):
  for i in range(N):
    if i not in lis:
      return i
for i in range(N):
  if i>0:
    dp[i][0] = dp[i-1][A[i-1]]
  for j in range(1,A[i]+1):
    dp[i][j] = mex(dp[i][:j])
print("Alice" if dp[-1][A[-1]]>0 else "Bob")
0