結果

問題 No.1964 sum = length
ユーザー googol_S0googol_S0
提出日時 2022-06-03 21:24:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 65,500 KB
最終ジャッジ日時 2024-09-21 02:26:21
合計ジャッジ時間 3,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,388 KB
testcase_01 AC 36 ms
53,404 KB
testcase_02 AC 38 ms
59,780 KB
testcase_03 AC 36 ms
52,280 KB
testcase_04 AC 36 ms
53,408 KB
testcase_05 AC 37 ms
52,736 KB
testcase_06 AC 37 ms
52,560 KB
testcase_07 AC 37 ms
52,612 KB
testcase_08 AC 35 ms
53,220 KB
testcase_09 AC 35 ms
52,872 KB
testcase_10 AC 35 ms
51,876 KB
testcase_11 AC 36 ms
52,368 KB
testcase_12 AC 41 ms
60,116 KB
testcase_13 AC 44 ms
62,356 KB
testcase_14 AC 49 ms
61,928 KB
testcase_15 AC 51 ms
61,948 KB
testcase_16 AC 41 ms
59,776 KB
testcase_17 AC 44 ms
61,276 KB
testcase_18 AC 45 ms
62,504 KB
testcase_19 AC 43 ms
60,328 KB
testcase_20 AC 41 ms
61,884 KB
testcase_21 AC 40 ms
58,436 KB
testcase_22 AC 75 ms
63,812 KB
testcase_23 AC 74 ms
65,028 KB
testcase_24 AC 57 ms
64,780 KB
testcase_25 AC 61 ms
63,920 KB
testcase_26 AC 78 ms
65,404 KB
testcase_27 AC 65 ms
63,708 KB
testcase_28 AC 58 ms
63,024 KB
testcase_29 AC 70 ms
64,680 KB
testcase_30 AC 59 ms
63,640 KB
testcase_31 AC 77 ms
65,500 KB
testcase_32 AC 50 ms
62,340 KB
testcase_33 AC 51 ms
63,632 KB
testcase_34 AC 69 ms
64,576 KB
testcase_35 AC 54 ms
62,900 KB
testcase_36 AC 62 ms
63,440 KB
testcase_37 AC 67 ms
64,180 KB
testcase_38 AC 81 ms
64,584 KB
testcase_39 AC 58 ms
63,560 KB
testcase_40 AC 59 ms
63,992 KB
testcase_41 AC 77 ms
64,124 KB
testcase_42 AC 80 ms
65,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=[i-len(str(i)) for i in range(1,N+100)]
DP=[[0]*N for i in range(N+1)]
DP[0][0]=1
mod=998244353
for i in range(N):
  for j in range(N):
    for k in range(len(X)):
      if j+X[k]>=N:
        break
      DP[i+1][j+X[k]]+=DP[i][j]
  for j in range(N):
    DP[i+1][j]%=mod
print(DP[N][N-1])
0