結果

問題 No.741 AscNumber(Easy)
ユーザー Nikkuniku029Nikkuniku029
提出日時 2022-08-13 16:39:57
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 383 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 81,464 KB
最終ジャッジ日時 2024-09-24 19:48:43
合計ジャッジ時間 5,603 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,244 KB
testcase_01 AC 35 ms
53,128 KB
testcase_02 AC 34 ms
52,868 KB
testcase_03 AC 35 ms
52,140 KB
testcase_04 AC 36 ms
52,488 KB
testcase_05 AC 36 ms
52,740 KB
testcase_06 AC 35 ms
52,156 KB
testcase_07 AC 35 ms
53,288 KB
testcase_08 AC 35 ms
52,496 KB
testcase_09 AC 39 ms
52,824 KB
testcase_10 AC 36 ms
52,932 KB
testcase_11 AC 34 ms
52,648 KB
testcase_12 AC 34 ms
52,672 KB
testcase_13 AC 36 ms
52,884 KB
testcase_14 AC 35 ms
52,320 KB
testcase_15 AC 35 ms
52,932 KB
testcase_16 AC 34 ms
53,320 KB
testcase_17 AC 35 ms
53,268 KB
testcase_18 AC 34 ms
53,008 KB
testcase_19 AC 35 ms
53,188 KB
testcase_20 AC 43 ms
61,616 KB
testcase_21 AC 44 ms
60,928 KB
testcase_22 AC 43 ms
61,564 KB
testcase_23 AC 44 ms
61,888 KB
testcase_24 AC 44 ms
60,380 KB
testcase_25 AC 44 ms
60,672 KB
testcase_26 AC 44 ms
61,792 KB
testcase_27 AC 44 ms
61,876 KB
testcase_28 AC 42 ms
62,232 KB
testcase_29 AC 42 ms
61,348 KB
testcase_30 AC 42 ms
62,592 KB
testcase_31 AC 42 ms
60,668 KB
testcase_32 AC 36 ms
52,688 KB
testcase_33 AC 43 ms
61,420 KB
testcase_34 AC 44 ms
60,496 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
n = str(pow(10, k))
m = len(n)
MOD = 1000_000_007
dp = [[0]*11 for _ in range(2)]
dp[0][0] = 1
for i in range(m):
    for j in range(10):
        dp[0][j+1] += dp[0][j]
        dp[0][j+1] %= MOD
        dp[0][j] = dp[0][j] % MOD

        dp[1][j+1] += dp[1][j]
        dp[1][j+1] %= MOD
        dp[1][j] = (dp[0][j]+dp[1][j]) % MOD


ans = dp[0][9] % MOD
print(ans)
0