結果

問題 No.1506 Unbalanced Pocky Game
ユーザー tobusakanatobusakana
提出日時 2022-11-20 09:36:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 2,000 ms
コード長 1,164 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 375,164 KB
最終ジャッジ日時 2024-09-21 10:58:12
合計ジャッジ時間 18,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 60 ms
70,784 KB
testcase_04 AC 270 ms
190,464 KB
testcase_05 AC 329 ms
224,640 KB
testcase_06 AC 223 ms
165,888 KB
testcase_07 AC 154 ms
133,376 KB
testcase_08 AC 233 ms
168,576 KB
testcase_09 AC 333 ms
229,120 KB
testcase_10 AC 332 ms
231,204 KB
testcase_11 AC 162 ms
135,040 KB
testcase_12 AC 154 ms
129,664 KB
testcase_13 AC 99 ms
94,848 KB
testcase_14 AC 156 ms
134,272 KB
testcase_15 AC 146 ms
125,824 KB
testcase_16 AC 345 ms
228,096 KB
testcase_17 AC 178 ms
140,544 KB
testcase_18 AC 140 ms
120,320 KB
testcase_19 AC 137 ms
114,176 KB
testcase_20 AC 341 ms
230,452 KB
testcase_21 AC 154 ms
129,792 KB
testcase_22 AC 243 ms
174,592 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 37 ms
51,712 KB
testcase_25 AC 438 ms
287,408 KB
testcase_26 AC 674 ms
371,456 KB
testcase_27 AC 682 ms
374,800 KB
testcase_28 AC 639 ms
359,324 KB
testcase_29 AC 650 ms
366,296 KB
testcase_30 AC 675 ms
374,664 KB
testcase_31 AC 683 ms
375,164 KB
testcase_32 AC 681 ms
371,200 KB
testcase_33 AC 692 ms
371,076 KB
testcase_34 AC 644 ms
358,820 KB
testcase_35 AC 626 ms
359,084 KB
testcase_36 AC 38 ms
52,736 KB
testcase_37 AC 39 ms
52,992 KB
testcase_38 AC 37 ms
52,480 KB
testcase_39 AC 37 ms
52,736 KB
testcase_40 AC 39 ms
52,480 KB
testcase_41 AC 39 ms
52,608 KB
testcase_42 AC 44 ms
52,736 KB
testcase_43 AC 38 ms
52,736 KB
testcase_44 AC 37 ms
52,352 KB
testcase_45 AC 35 ms
52,352 KB
testcase_46 AC 263 ms
178,048 KB
testcase_47 AC 131 ms
110,848 KB
testcase_48 AC 147 ms
119,552 KB
testcase_49 AC 289 ms
190,976 KB
testcase_50 AC 266 ms
179,456 KB
testcase_51 AC 283 ms
187,904 KB
testcase_52 AC 230 ms
157,824 KB
testcase_53 AC 324 ms
203,392 KB
testcase_54 AC 161 ms
125,056 KB
testcase_55 AC 144 ms
112,896 KB
testcase_56 AC 132 ms
111,488 KB
testcase_57 AC 271 ms
178,432 KB
testcase_58 AC 127 ms
107,648 KB
testcase_59 AC 84 ms
83,200 KB
testcase_60 AC 174 ms
132,352 KB
testcase_61 AC 261 ms
175,360 KB
testcase_62 AC 205 ms
145,792 KB
testcase_63 AC 166 ms
128,512 KB
testcase_64 AC 288 ms
188,032 KB
testcase_65 AC 185 ms
133,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

sys.setrecursionlimit((10 ** 5) * 3) 
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')

N = int(readline())
A = list(map(int,readline().split()))[::-1]

# Aiを渡されたときに取れる選択肢:
# ・次の数Ai+1を渡す
# ・今の数Aiを1にして渡す(Ai > 1)
# N+1個目を渡されたとき負けなので、N番目を渡されたときは勝ち

# 状態[i][p] = i番目の要素を、p:1=2以上で渡された、p:0=1で渡された
mem = [[False] * 2 for i in range(N)]
win = [[False] * 2 for i in range(N)]
mem[-1][0] = True
mem[-1][1] = True
win[-1][0] = True
win[-1][1] = True
# 最後の要素を渡されたら勝ちなので

def f(ind, p):
    if mem[ind][p]:
        return win[ind][p]
    res = False
    if p: # 1以上で渡された場合、1にして渡すことが出来る
        res |= not f(ind, 0)
    # 次の数を渡すことが出来る
    res |= not f(ind + 1, 1 if A[ind + 1] > 1 else 0) # 次の数が1より大きいか
    mem[ind][p] = True
    win[ind][p] = res
    return res
    
if f(0, 1 if A[0] > 1 else 0):
    print("Alice")
else:
    print("Bob")
0