結果

問題 No.741 AscNumber(Easy)
ユーザー c-yanc-yan
提出日時 2020-12-02 01:19:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,100 KB
最終ジャッジ日時 2024-09-13 03:37:41
合計ジャッジ時間 8,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,624 KB
testcase_01 AC 36 ms
53,348 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 37 ms
53,488 KB
testcase_04 AC 36 ms
52,832 KB
testcase_05 AC 37 ms
53,072 KB
testcase_06 AC 36 ms
52,344 KB
testcase_07 AC 37 ms
52,620 KB
testcase_08 AC 37 ms
53,196 KB
testcase_09 AC 37 ms
52,500 KB
testcase_10 AC 38 ms
52,704 KB
testcase_11 AC 38 ms
52,936 KB
testcase_12 AC 37 ms
52,524 KB
testcase_13 AC 38 ms
52,680 KB
testcase_14 AC 36 ms
53,020 KB
testcase_15 AC 37 ms
53,080 KB
testcase_16 AC 37 ms
51,940 KB
testcase_17 AC 36 ms
52,948 KB
testcase_18 AC 36 ms
53,424 KB
testcase_19 AC 36 ms
52,820 KB
testcase_20 AC 44 ms
60,876 KB
testcase_21 AC 42 ms
60,164 KB
testcase_22 AC 45 ms
60,828 KB
testcase_23 AC 45 ms
61,260 KB
testcase_24 AC 42 ms
60,184 KB
testcase_25 AC 44 ms
61,112 KB
testcase_26 AC 45 ms
61,300 KB
testcase_27 AC 44 ms
60,932 KB
testcase_28 AC 43 ms
60,756 KB
testcase_29 AC 45 ms
61,292 KB
testcase_30 AC 45 ms
62,276 KB
testcase_31 AC 43 ms
61,432 KB
testcase_32 AC 42 ms
60,020 KB
testcase_33 AC 45 ms
61,808 KB
testcase_34 AC 45 ms
62,076 KB
testcase_35 AC 402 ms
75,892 KB
testcase_36 AC 204 ms
75,700 KB
testcase_37 AC 231 ms
75,648 KB
testcase_38 AC 228 ms
75,832 KB
testcase_39 AC 202 ms
75,692 KB
testcase_40 AC 254 ms
75,716 KB
testcase_41 AC 370 ms
75,948 KB
testcase_42 AC 220 ms
75,756 KB
testcase_43 AC 173 ms
75,688 KB
testcase_44 AC 302 ms
75,644 KB
testcase_45 AC 322 ms
75,632 KB
testcase_46 AC 389 ms
75,776 KB
testcase_47 AC 109 ms
75,828 KB
testcase_48 AC 383 ms
75,840 KB
testcase_49 AC 328 ms
75,844 KB
testcase_50 AC 89 ms
75,708 KB
testcase_51 AC 179 ms
75,888 KB
testcase_52 AC 416 ms
75,656 KB
testcase_53 AC 418 ms
75,900 KB
testcase_54 AC 414 ms
76,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

m = 1000000007

dp = [0] * 10
dp[0] = 1
for _ in range(N):
    for i in range(8, -1, -1):
        for j in range(i + 1, 10):
            dp[j] += dp[i]
            dp[j] %= m
print(sum(dp) % m)
0