結果

問題 No.1964 sum = length
ユーザー ああいいああいい
提出日時 2022-06-03 23:35:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-09-21 03:31:25
合計ジャッジ時間 5,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 55 ms
63,872 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 42 ms
57,984 KB
testcase_06 AC 43 ms
59,008 KB
testcase_07 AC 45 ms
59,264 KB
testcase_08 AC 44 ms
59,264 KB
testcase_09 AC 44 ms
59,904 KB
testcase_10 AC 44 ms
59,264 KB
testcase_11 AC 44 ms
59,264 KB
testcase_12 AC 62 ms
66,048 KB
testcase_13 AC 63 ms
66,944 KB
testcase_14 AC 69 ms
67,712 KB
testcase_15 AC 71 ms
67,968 KB
testcase_16 AC 51 ms
62,976 KB
testcase_17 AC 61 ms
66,304 KB
testcase_18 AC 62 ms
66,688 KB
testcase_19 AC 58 ms
65,536 KB
testcase_20 AC 58 ms
65,536 KB
testcase_21 AC 50 ms
61,948 KB
testcase_22 AC 140 ms
76,032 KB
testcase_23 AC 132 ms
74,644 KB
testcase_24 AC 102 ms
71,808 KB
testcase_25 AC 111 ms
72,448 KB
testcase_26 AC 144 ms
76,116 KB
testcase_27 AC 118 ms
73,472 KB
testcase_28 AC 107 ms
72,064 KB
testcase_29 AC 126 ms
74,204 KB
testcase_30 AC 109 ms
72,832 KB
testcase_31 AC 145 ms
76,020 KB
testcase_32 AC 74 ms
69,888 KB
testcase_33 AC 74 ms
69,376 KB
testcase_34 AC 131 ms
74,496 KB
testcase_35 AC 97 ms
70,912 KB
testcase_36 AC 117 ms
73,216 KB
testcase_37 AC 123 ms
74,204 KB
testcase_38 AC 145 ms
75,776 KB
testcase_39 AC 109 ms
72,576 KB
testcase_40 AC 111 ms
72,832 KB
testcase_41 AC 140 ms
76,032 KB
testcase_42 AC 150 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

P = 998244353
dp = [0] * n
dp[0] = 1
for _ in range(n):
    nx = [0] * n
    for i in range(n):
        for j in range(1,10):
            if i + j - 1 < n:
                nx[i + j - 1] += dp[i]
        for j in range(10,100):
            if i + j - 2 < n:
                nx[i + j - 2] += dp[i]
        for j in range(100,230):
            if i + j - 3 < n:
                nx[i + j - 3] += dp[i]
    for i in range(n):
        nx[i] %= P
    dp = nx
print(dp[n - 1])
0