結果

問題 No.1964 sum = length
ユーザー tonyu0tonyu0
提出日時 2022-09-28 17:57:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 74,136 KB
最終ジャッジ日時 2024-06-02 01:35:55
合計ジャッジ時間 5,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
69,368 KB
testcase_01 AC 47 ms
63,912 KB
testcase_02 AC 67 ms
71,288 KB
testcase_03 AC 46 ms
63,112 KB
testcase_04 AC 58 ms
69,288 KB
testcase_05 AC 58 ms
69,432 KB
testcase_06 AC 62 ms
69,836 KB
testcase_07 AC 63 ms
69,240 KB
testcase_08 AC 63 ms
68,836 KB
testcase_09 AC 60 ms
69,020 KB
testcase_10 AC 61 ms
69,888 KB
testcase_11 AC 62 ms
69,304 KB
testcase_12 AC 76 ms
72,176 KB
testcase_13 AC 85 ms
70,672 KB
testcase_14 AC 95 ms
71,896 KB
testcase_15 AC 98 ms
72,340 KB
testcase_16 AC 68 ms
71,012 KB
testcase_17 AC 78 ms
71,196 KB
testcase_18 AC 83 ms
71,496 KB
testcase_19 AC 72 ms
70,472 KB
testcase_20 AC 72 ms
70,524 KB
testcase_21 AC 65 ms
70,200 KB
testcase_22 AC 141 ms
72,296 KB
testcase_23 AC 136 ms
72,960 KB
testcase_24 AC 119 ms
72,168 KB
testcase_25 AC 122 ms
71,880 KB
testcase_26 AC 138 ms
73,408 KB
testcase_27 AC 125 ms
71,768 KB
testcase_28 AC 116 ms
72,084 KB
testcase_29 AC 134 ms
71,828 KB
testcase_30 AC 121 ms
72,056 KB
testcase_31 AC 136 ms
73,360 KB
testcase_32 AC 100 ms
72,688 KB
testcase_33 AC 100 ms
72,412 KB
testcase_34 AC 135 ms
72,500 KB
testcase_35 AC 111 ms
72,008 KB
testcase_36 AC 124 ms
72,000 KB
testcase_37 AC 128 ms
72,004 KB
testcase_38 AC 141 ms
74,136 KB
testcase_39 AC 121 ms
73,004 KB
testcase_40 AC 117 ms
72,400 KB
testcase_41 AC 134 ms
72,824 KB
testcase_42 AC 143 ms
73,596 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