結果

問題 No.1506 Unbalanced Pocky Game
ユーザー marroncastlemarroncastle
提出日時 2021-05-14 22:31:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 111,084 KB
最終ジャッジ日時 2024-10-02 02:15:58
合計ジャッジ時間 7,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,632 KB
testcase_01 AC 39 ms
52,488 KB
testcase_02 AC 38 ms
52,128 KB
testcase_03 AC 55 ms
69,808 KB
testcase_04 AC 104 ms
102,296 KB
testcase_05 AC 110 ms
104,036 KB
testcase_06 AC 95 ms
95,540 KB
testcase_07 AC 84 ms
88,904 KB
testcase_08 AC 91 ms
95,888 KB
testcase_09 AC 108 ms
103,700 KB
testcase_10 AC 115 ms
106,232 KB
testcase_11 AC 81 ms
89,124 KB
testcase_12 AC 79 ms
87,468 KB
testcase_13 AC 70 ms
80,700 KB
testcase_14 AC 88 ms
89,152 KB
testcase_15 AC 78 ms
86,588 KB
testcase_16 AC 114 ms
103,084 KB
testcase_17 AC 84 ms
91,148 KB
testcase_18 AC 72 ms
84,584 KB
testcase_19 AC 72 ms
82,696 KB
testcase_20 AC 116 ms
105,448 KB
testcase_21 AC 77 ms
87,800 KB
testcase_22 AC 98 ms
97,876 KB
testcase_23 AC 38 ms
53,480 KB
testcase_24 AC 38 ms
52,404 KB
testcase_25 AC 135 ms
111,084 KB
testcase_26 AC 157 ms
108,656 KB
testcase_27 AC 160 ms
108,192 KB
testcase_28 AC 154 ms
109,092 KB
testcase_29 AC 154 ms
108,584 KB
testcase_30 AC 161 ms
108,408 KB
testcase_31 AC 155 ms
108,864 KB
testcase_32 AC 155 ms
108,212 KB
testcase_33 AC 156 ms
108,128 KB
testcase_34 AC 155 ms
108,552 KB
testcase_35 AC 159 ms
108,804 KB
testcase_36 AC 40 ms
54,536 KB
testcase_37 AC 41 ms
53,272 KB
testcase_38 AC 39 ms
53,412 KB
testcase_39 AC 39 ms
52,548 KB
testcase_40 AC 40 ms
53,136 KB
testcase_41 AC 40 ms
54,556 KB
testcase_42 AC 40 ms
54,056 KB
testcase_43 AC 41 ms
54,076 KB
testcase_44 AC 39 ms
52,992 KB
testcase_45 AC 38 ms
53,080 KB
testcase_46 AC 98 ms
91,892 KB
testcase_47 AC 73 ms
79,976 KB
testcase_48 AC 77 ms
81,800 KB
testcase_49 AC 106 ms
94,244 KB
testcase_50 AC 100 ms
92,152 KB
testcase_51 AC 109 ms
93,940 KB
testcase_52 AC 91 ms
89,776 KB
testcase_53 AC 104 ms
97,040 KB
testcase_54 AC 78 ms
83,236 KB
testcase_55 AC 72 ms
80,260 KB
testcase_56 AC 78 ms
80,184 KB
testcase_57 AC 101 ms
92,044 KB
testcase_58 AC 74 ms
79,320 KB
testcase_59 AC 70 ms
77,544 KB
testcase_60 AC 80 ms
84,924 KB
testcase_61 AC 99 ms
91,520 KB
testcase_62 AC 94 ms
88,376 KB
testcase_63 AC 80 ms
83,976 KB
testcase_64 AC 99 ms
93,884 KB
testcase_65 AC 85 ms
85,400 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(4):
    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