結果

問題 No.741 AscNumber(Easy)
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-06-14 13:28:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 226,304 KB
最終ジャッジ日時 2024-06-27 06:22:50
合計ジャッジ時間 10,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 37 ms
52,468 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 36 ms
52,608 KB
testcase_14 AC 38 ms
51,968 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 37 ms
52,608 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 AC 40 ms
51,712 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 46 ms
60,928 KB
testcase_21 AC 41 ms
59,264 KB
testcase_22 AC 46 ms
61,312 KB
testcase_23 AC 45 ms
61,184 KB
testcase_24 AC 42 ms
59,008 KB
testcase_25 AC 43 ms
59,264 KB
testcase_26 AC 45 ms
60,544 KB
testcase_27 AC 43 ms
59,136 KB
testcase_28 AC 42 ms
59,264 KB
testcase_29 AC 43 ms
59,616 KB
testcase_30 AC 45 ms
61,056 KB
testcase_31 AC 45 ms
60,672 KB
testcase_32 AC 37 ms
52,608 KB
testcase_33 AC 45 ms
60,672 KB
testcase_34 AC 46 ms
61,184 KB
testcase_35 AC 481 ms
219,264 KB
testcase_36 AC 252 ms
138,624 KB
testcase_37 AC 286 ms
149,980 KB
testcase_38 AC 291 ms
148,992 KB
testcase_39 AC 243 ms
137,344 KB
testcase_40 AC 320 ms
159,488 KB
testcase_41 AC 449 ms
206,848 KB
testcase_42 AC 261 ms
145,152 KB
testcase_43 AC 208 ms
126,080 KB
testcase_44 AC 365 ms
178,432 KB
testcase_45 AC 380 ms
186,496 KB
testcase_46 AC 472 ms
212,352 KB
testcase_47 AC 133 ms
98,556 KB
testcase_48 AC 460 ms
212,588 KB
testcase_49 AC 399 ms
189,824 KB
testcase_50 AC 97 ms
88,868 KB
testcase_51 AC 213 ms
128,560 KB
testcase_52 AC 510 ms
226,264 KB
testcase_53 AC 497 ms
226,304 KB
testcase_54 AC 495 ms
225,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N==1:
    print(10)
    exit()
else:
    ans=10
    dp=[[0 for i in range(10)] for j in range(N+1)]
    #dp[K][i]   = K桁めまで見て末尾がi以下のもの
    mod =10**9 + 7
    for i in range(10):
        if i==0:
            dp[2][i]=i
        else:
            dp[2][i]=i+dp[2][i-1]
    for i in range(3,N+1):
        for j in range(1,10):
            dp[i][j]=(dp[i][j-1]+dp[i-1][j])%mod
    for i in range(2,N+1):
        ans+=dp[i][9]
        ans%=mod
    print(ans)
    
0