結果

問題 No.741 AscNumber(Easy)
ユーザー Nikkuniku029Nikkuniku029
提出日時 2022-08-13 16:02:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 481 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 81,276 KB
最終ジャッジ日時 2024-09-24 19:16:11
合計ジャッジ時間 6,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,508 KB
testcase_01 AC 39 ms
52,820 KB
testcase_02 AC 39 ms
52,688 KB
testcase_03 AC 40 ms
52,632 KB
testcase_04 AC 39 ms
53,668 KB
testcase_05 AC 39 ms
52,900 KB
testcase_06 AC 40 ms
52,808 KB
testcase_07 AC 39 ms
53,020 KB
testcase_08 AC 40 ms
53,220 KB
testcase_09 AC 41 ms
54,216 KB
testcase_10 AC 40 ms
54,744 KB
testcase_11 AC 41 ms
53,264 KB
testcase_12 AC 41 ms
54,000 KB
testcase_13 AC 40 ms
53,496 KB
testcase_14 AC 42 ms
54,488 KB
testcase_15 AC 40 ms
53,124 KB
testcase_16 AC 42 ms
54,244 KB
testcase_17 AC 46 ms
61,872 KB
testcase_18 AC 46 ms
61,016 KB
testcase_19 AC 47 ms
61,048 KB
testcase_20 AC 66 ms
71,512 KB
testcase_21 AC 59 ms
67,040 KB
testcase_22 AC 69 ms
73,112 KB
testcase_23 AC 69 ms
73,732 KB
testcase_24 AC 58 ms
65,944 KB
testcase_25 AC 64 ms
69,604 KB
testcase_26 AC 67 ms
72,704 KB
testcase_27 AC 61 ms
68,088 KB
testcase_28 AC 60 ms
67,492 KB
testcase_29 AC 62 ms
68,280 KB
testcase_30 AC 69 ms
71,564 KB
testcase_31 AC 66 ms
70,996 KB
testcase_32 AC 55 ms
64,772 KB
testcase_33 AC 68 ms
71,012 KB
testcase_34 AC 70 ms
73,980 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 #

n = str(pow(10, int(input())))
m = len(n)
MOD = 1000_000_007
dp = [[[0]*12 for _ in range(2)] for _ in range(m+1)]
dp[0][0][0] = 1
for i in range(m):
    for smaller in range(2):
        limit = 10 if smaller else int(n[i])+1
        for j in range(10):
            for x in range(j, limit):
                dp[i+1][smaller | (x < int(n[i]))][x] += dp[i][smaller][j]
                dp[i+1][smaller | (x < int(n[i]))][x] %= MOD
ans = (sum(dp[m][0])+sum(dp[m][1])) % MOD
print(ans)
0