結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー いまり💣🍠いまり💣🍠
提出日時 2024-06-21 23:58:08
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 842 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 848,316 KB
最終ジャッジ日時 2024-06-21 23:58:12
合計ジャッジ時間 3,481 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,516 KB
testcase_01 AC 35 ms
54,104 KB
testcase_02 AC 35 ms
53,004 KB
testcase_03 AC 75 ms
77,720 KB
testcase_04 AC 92 ms
80,248 KB
testcase_05 AC 64 ms
77,036 KB
testcase_06 AC 121 ms
79,352 KB
testcase_07 AC 72 ms
78,456 KB
testcase_08 AC 73 ms
78,304 KB
testcase_09 AC 59 ms
76,588 KB
testcase_10 AC 66 ms
77,688 KB
testcase_11 AC 83 ms
79,792 KB
testcase_12 MLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(2 * (10 ** 5) + 5)
N = int(input())
A = list(map(int, input().split()))
MOD = 998244353

patterns = [[-1] * A[i] for i in range(N)]
def func(i, j):
    if patterns[i][j] != -1:
        return patterns[i][j]
    count = 0
    if j + 1 == A[i] and (i + 1 == N or j >= A[i + 1]):
        # 右と下にマスがない場合
        patterns[i][j] = 2
        return 2
    if i + 1 < N and j < A[i + 1]:
        # 下にマスがある場合
        # i, jに右のカメラを置いたとき
        count += func(i + 1, j)
    else:
        count += 1
    
    if j + 1 < A[i]:
        # 右にマスがある場合
        # i, jに下のカメラを置いたとき
        count += func(i, j + 1)
    else:
        count += 1
    
    count %= MOD
    patterns[i][j] = count
    return count
print(func(0, 0))
0