結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー ButterflvButterflv
提出日時 2024-06-21 22:26:06
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 642 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 848,552 KB
最終ジャッジ日時 2024-06-21 22:26:10
合計ジャッジ時間 4,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,272 KB
testcase_01 AC 38 ms
52,508 KB
testcase_02 AC 37 ms
53,280 KB
testcase_03 AC 69 ms
73,208 KB
testcase_04 AC 115 ms
88,832 KB
testcase_05 AC 60 ms
68,760 KB
testcase_06 AC 107 ms
88,796 KB
testcase_07 AC 76 ms
74,640 KB
testcase_08 AC 92 ms
87,456 KB
testcase_09 AC 58 ms
67,028 KB
testcase_10 AC 71 ms
74,324 KB
testcase_11 AC 100 ms
88,656 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 #

from itertools import zip_longest
N=int(input())
A=tuple(map(int,input().split()))
MOD=998244353
dp=[[0 for i in range(A[0]+1)]]+[[0 for j in range(A[i]+1)]for i in range(N)]
dp[0][0] = 1
for i in range(len(dp)):
  for j in range(len(dp[i])):
    if i==0:
      dp[i][j] += dp[i][j-1]
    elif j==0:
      dp[i][j] += dp[i-1][j]
    else:
      dp[i][j] += dp[i-1][j] + dp[i][j-1]
    dp[i][j] %= MOD

ans = 0

dp=list(zip_longest(*dp))

for i in range(len(dp)):
  flag = False
  for j in range(len(dp[i])-1, -1, -1):
    if dp[i][j]!=None:
      if flag:
        ans += dp[i][j]
        break
      else:
        flag = True

print(ans%MOD)
0