結果

問題 No.1964 sum = length
ユーザー tonyu0tonyu0
提出日時 2022-09-28 17:57:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 72,192 KB
最終ジャッジ日時 2024-12-22 17:38:31
合計ジャッジ時間 7,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
67,840 KB
testcase_01 AC 63 ms
62,720 KB
testcase_02 AC 92 ms
69,504 KB
testcase_03 AC 64 ms
62,464 KB
testcase_04 AC 77 ms
67,840 KB
testcase_05 AC 81 ms
68,864 KB
testcase_06 AC 85 ms
68,864 KB
testcase_07 AC 77 ms
69,248 KB
testcase_08 AC 82 ms
69,248 KB
testcase_09 AC 82 ms
68,736 KB
testcase_10 AC 81 ms
68,736 KB
testcase_11 AC 87 ms
69,632 KB
testcase_12 AC 101 ms
70,016 KB
testcase_13 AC 109 ms
70,144 KB
testcase_14 AC 123 ms
70,400 KB
testcase_15 AC 128 ms
70,528 KB
testcase_16 AC 87 ms
69,632 KB
testcase_17 AC 104 ms
70,016 KB
testcase_18 AC 108 ms
70,272 KB
testcase_19 AC 96 ms
69,760 KB
testcase_20 AC 99 ms
69,632 KB
testcase_21 AC 87 ms
69,376 KB
testcase_22 AC 178 ms
71,808 KB
testcase_23 AC 163 ms
71,936 KB
testcase_24 AC 149 ms
71,040 KB
testcase_25 AC 150 ms
71,168 KB
testcase_26 AC 176 ms
71,808 KB
testcase_27 AC 155 ms
71,680 KB
testcase_28 AC 148 ms
71,424 KB
testcase_29 AC 163 ms
71,424 KB
testcase_30 AC 149 ms
71,424 KB
testcase_31 AC 173 ms
72,064 KB
testcase_32 AC 133 ms
70,656 KB
testcase_33 AC 133 ms
70,656 KB
testcase_34 AC 168 ms
71,680 KB
testcase_35 AC 136 ms
71,040 KB
testcase_36 AC 150 ms
71,424 KB
testcase_37 AC 169 ms
71,808 KB
testcase_38 AC 176 ms
71,936 KB
testcase_39 AC 152 ms
71,296 KB
testcase_40 AC 148 ms
71,168 KB
testcase_41 AC 168 ms
72,192 KB
testcase_42 AC 175 ms
72,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
M = 205
dp = [0] * M
dp[0] = 1
for i in range(n):
    ndp = [0] * M
    for j in range(M): # 今の和
        for k in range(1,M): # 選ぶ番号
            l = k
            if k<10:l-=1
            elif k<100:l-=2
            else:l-=3
            if j+l<M:
                ndp[j+l]+=dp[j]
                ndp[j+l]%=998244353
    dp=ndp
print(dp[n-1])
0