結果

問題 No.1506 Unbalanced Pocky Game
ユーザー c-yanc-yan
提出日時 2021-05-14 23:02:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 613 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 51,368 KB
最終ジャッジ日時 2024-10-02 03:43:00
合計ジャッジ時間 8,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 55 ms
15,744 KB
testcase_14 AC 85 ms
21,904 KB
testcase_15 AC 75 ms
19,908 KB
testcase_16 AC 159 ms
37,516 KB
testcase_17 AC 92 ms
23,296 KB
testcase_18 AC 68 ms
18,572 KB
testcase_19 AC 63 ms
17,100 KB
testcase_20 AC 163 ms
38,312 KB
testcase_21 AC 82 ms
20,840 KB
testcase_22 AC 117 ms
28,368 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 225 ms
48,316 KB
testcase_26 AC 244 ms
50,544 KB
testcase_27 AC 248 ms
51,368 KB
testcase_28 AC 234 ms
49,532 KB
testcase_29 AC 236 ms
50,096 KB
testcase_30 AC 243 ms
51,360 KB
testcase_31 AC 246 ms
51,276 KB
testcase_32 AC 242 ms
50,916 KB
testcase_33 AC 244 ms
50,660 KB
testcase_34 AC 239 ms
49,408 KB
testcase_35 AC 238 ms
49,524 KB
testcase_36 AC 29 ms
10,624 KB
testcase_37 AC 30 ms
10,624 KB
testcase_38 AC 30 ms
10,624 KB
testcase_39 AC 30 ms
10,624 KB
testcase_40 AC 30 ms
10,752 KB
testcase_41 AC 29 ms
10,624 KB
testcase_42 AC 30 ms
10,624 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 29 ms
10,624 KB
testcase_45 AC 29 ms
10,624 KB
testcase_46 AC 97 ms
24,608 KB
testcase_47 AC 53 ms
15,232 KB
testcase_48 AC 61 ms
16,684 KB
testcase_49 AC 115 ms
26,980 KB
testcase_50 AC 103 ms
24,828 KB
testcase_51 AC 111 ms
26,284 KB
testcase_52 AC 90 ms
23,308 KB
testcase_53 AC 126 ms
29,596 KB
testcase_54 AC 67 ms
18,292 KB
testcase_55 AC 54 ms
15,472 KB
testcase_56 AC 51 ms
15,360 KB
testcase_57 AC 100 ms
24,512 KB
testcase_58 AC 51 ms
15,068 KB
testcase_59 AC 42 ms
13,184 KB
testcase_60 AC 72 ms
19,204 KB
testcase_61 AC 99 ms
24,108 KB
testcase_62 AC 86 ms
22,236 KB
testcase_63 AC 68 ms
18,940 KB
testcase_64 AC 111 ms
26,448 KB
testcase_65 AC 74 ms
19,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit

setrecursionlimit(10 ** 6)

N, *A = map(int, open(0).read().split())

cache = [[None] * (N + 1) for _ in range(2)]

def f(i, turn):
    if i == -1:
        return turn ^ 1

    if cache[turn][i] is not None:
        return cache[turn][i]

    if A[i - 1] == 1:
        t = f(i - 1, turn ^ 1)
        cache[turn][i] = t
        return t

    t = f(i - 1, turn)
    if t == turn:
        cache[turn][i] = t
        return t
    t = f(i - 1, turn ^ 1)
    cache[turn][i] = t
    return t


# turn = 0 Alice
# turn = 1 Bob
if f(N, 0) == 0:
    print('Alice')
else:
    print('Bob')
0