結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-06 10:49:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 434 ms / 3,000 ms
コード長 551 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 164,348 KB
最終ジャッジ日時 2024-10-08 05:27:36
合計ジャッジ時間 5,616 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,604 KB
testcase_01 AC 48 ms
64,112 KB
testcase_02 AC 44 ms
62,268 KB
testcase_03 AC 35 ms
53,260 KB
testcase_04 AC 41 ms
60,128 KB
testcase_05 AC 44 ms
61,132 KB
testcase_06 AC 43 ms
61,724 KB
testcase_07 AC 42 ms
60,656 KB
testcase_08 AC 48 ms
62,252 KB
testcase_09 AC 46 ms
62,656 KB
testcase_10 AC 43 ms
61,704 KB
testcase_11 AC 43 ms
60,584 KB
testcase_12 AC 52 ms
64,960 KB
testcase_13 AC 52 ms
65,204 KB
testcase_14 AC 44 ms
61,336 KB
testcase_15 AC 59 ms
69,976 KB
testcase_16 AC 52 ms
66,368 KB
testcase_17 AC 50 ms
64,540 KB
testcase_18 AC 52 ms
65,008 KB
testcase_19 AC 53 ms
66,256 KB
testcase_20 AC 48 ms
64,412 KB
testcase_21 AC 55 ms
67,036 KB
testcase_22 AC 58 ms
68,352 KB
testcase_23 AC 56 ms
67,416 KB
testcase_24 AC 48 ms
63,620 KB
testcase_25 AC 56 ms
68,028 KB
testcase_26 AC 59 ms
67,696 KB
testcase_27 AC 55 ms
66,948 KB
testcase_28 AC 54 ms
66,780 KB
testcase_29 AC 50 ms
65,648 KB
testcase_30 AC 87 ms
83,044 KB
testcase_31 AC 83 ms
84,736 KB
testcase_32 AC 128 ms
89,520 KB
testcase_33 AC 229 ms
119,952 KB
testcase_34 AC 402 ms
161,636 KB
testcase_35 AC 416 ms
163,888 KB
testcase_36 AC 416 ms
163,760 KB
testcase_37 AC 434 ms
164,348 KB
testcase_38 AC 359 ms
163,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
mod = 10**9+7
le = len(n)
dp = [[[0]*2 for i in range(100)] for j in range(le+1)]
dp[0][1][1] = 1

for i in range(le):
    x = int(n[i])
    for j in range(100):
        for k in range(1,10):
            if k < x:
                dp[i+1][(j*k)%100][0] += dp[i][j][1]
            if k == x:
                dp[i+1][(j*k)%100][1] += dp[i][j][1]
                dp[i+1][(j*k)%100][1] %= mod
            dp[i+1][(j*k)%100][0] += dp[i][j][0]
            dp[i+1][(j*k)%100][0] %= mod
    dp[i+1][1][0] += 1
print(sum(dp[-1][0])%mod)
            
0