結果

問題 No.1964 sum = length
ユーザー harurunharurun
提出日時 2022-04-21 20:30:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 68,992 KB
最終ジャッジ日時 2024-06-22 23:34:25
合計ジャッジ時間 9,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,608 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 42 ms
60,416 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 33 ms
52,480 KB
testcase_06 AC 33 ms
52,096 KB
testcase_07 AC 33 ms
52,224 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 40 ms
59,392 KB
testcase_10 AC 39 ms
59,136 KB
testcase_11 AC 41 ms
59,392 KB
testcase_12 AC 48 ms
61,388 KB
testcase_13 AC 58 ms
61,696 KB
testcase_14 AC 82 ms
62,080 KB
testcase_15 AC 102 ms
62,848 KB
testcase_16 AC 42 ms
60,416 KB
testcase_17 AC 49 ms
60,928 KB
testcase_18 AC 54 ms
61,568 KB
testcase_19 AC 45 ms
61,184 KB
testcase_20 AC 45 ms
60,544 KB
testcase_21 AC 41 ms
60,544 KB
testcase_22 AC 445 ms
66,688 KB
testcase_23 AC 425 ms
66,944 KB
testcase_24 AC 193 ms
64,128 KB
testcase_25 AC 240 ms
64,256 KB
testcase_26 AC 500 ms
67,456 KB
testcase_27 AC 303 ms
65,536 KB
testcase_28 AC 224 ms
64,256 KB
testcase_29 AC 373 ms
66,304 KB
testcase_30 AC 246 ms
64,512 KB
testcase_31 AC 500 ms
67,072 KB
testcase_32 AC 123 ms
62,464 KB
testcase_33 AC 118 ms
62,976 KB
testcase_34 AC 425 ms
66,560 KB
testcase_35 AC 154 ms
63,104 KB
testcase_36 AC 271 ms
64,640 KB
testcase_37 AC 368 ms
65,664 KB
testcase_38 AC 545 ms
67,712 KB
testcase_39 AC 228 ms
64,512 KB
testcase_40 AC 246 ms
64,640 KB
testcase_41 AC 470 ms
67,200 KB
testcase_42 AC 581 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  n=int(input())
  C=[0]*(2*n)
  a=1
  d=0
  f=10
  while a-d<2*n:
    C[a-d]+=1
    a+=1
    if a%f==0:
      d+=1
      f*=10
  mod=998244353
  dp=[[0]*(2*n) for i in range(n+1)]
  dp[0][0]=1
  for i in range(n):
    for j in range(2*n):
      for k in range(1,2*n):
        if j+k<2*n:
          dp[i+1][j+k]+=dp[i][j]*C[k]
          dp[i+1][j+k]%=mod
  print(dp[n][2*n-1])
  return

main()
0