結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,984 KB
testcase_01 AC 37 ms
53,568 KB
testcase_02 AC 36 ms
52,584 KB
testcase_03 AC 37 ms
52,468 KB
testcase_04 AC 35 ms
52,812 KB
testcase_05 AC 37 ms
52,124 KB
testcase_06 AC 37 ms
53,312 KB
testcase_07 AC 36 ms
52,992 KB
testcase_08 AC 37 ms
52,692 KB
testcase_09 AC 35 ms
52,964 KB
testcase_10 AC 36 ms
53,476 KB
testcase_11 AC 37 ms
52,408 KB
testcase_12 AC 37 ms
52,892 KB
testcase_13 AC 36 ms
53,424 KB
testcase_14 AC 37 ms
53,076 KB
testcase_15 AC 36 ms
52,592 KB
testcase_16 AC 37 ms
52,464 KB
testcase_17 AC 36 ms
53,004 KB
testcase_18 AC 40 ms
59,876 KB
testcase_19 AC 40 ms
59,156 KB
testcase_20 AC 45 ms
62,928 KB
testcase_21 AC 44 ms
60,808 KB
testcase_22 AC 46 ms
63,264 KB
testcase_23 AC 46 ms
63,424 KB
testcase_24 AC 43 ms
61,616 KB
testcase_25 AC 46 ms
62,064 KB
testcase_26 AC 46 ms
63,192 KB
testcase_27 AC 43 ms
61,480 KB
testcase_28 AC 44 ms
61,900 KB
testcase_29 AC 45 ms
62,552 KB
testcase_30 AC 46 ms
62,256 KB
testcase_31 AC 45 ms
63,124 KB
testcase_32 AC 43 ms
60,292 KB
testcase_33 AC 46 ms
62,544 KB
testcase_34 AC 46 ms
61,884 KB
testcase_35 AC 565 ms
76,000 KB
testcase_36 AC 277 ms
75,772 KB
testcase_37 AC 316 ms
75,968 KB
testcase_38 AC 313 ms
76,016 KB
testcase_39 AC 273 ms
75,912 KB
testcase_40 AC 351 ms
76,028 KB
testcase_41 AC 522 ms
75,940 KB
testcase_42 AC 300 ms
76,196 KB
testcase_43 AC 234 ms
75,780 KB
testcase_44 AC 426 ms
75,976 KB
testcase_45 AC 448 ms
76,060 KB
testcase_46 AC 546 ms
75,844 KB
testcase_47 AC 137 ms
75,768 KB
testcase_48 AC 545 ms
75,848 KB
testcase_49 AC 463 ms
75,976 KB
testcase_50 AC 108 ms
75,920 KB
testcase_51 AC 240 ms
75,652 KB
testcase_52 AC 595 ms
76,196 KB
testcase_53 AC 600 ms
76,096 KB
testcase_54 AC 588 ms
75,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

m = 1000000007

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