結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-03-06 17:04:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 3,000 ms
コード長 590 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 164,224 KB
最終ジャッジ日時 2024-10-08 17:06:03
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,544 KB
testcase_01 AC 56 ms
64,000 KB
testcase_02 AC 49 ms
62,336 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 43 ms
59,904 KB
testcase_05 AC 46 ms
61,312 KB
testcase_06 AC 47 ms
61,184 KB
testcase_07 AC 45 ms
60,160 KB
testcase_08 AC 49 ms
62,592 KB
testcase_09 AC 50 ms
62,720 KB
testcase_10 AC 47 ms
61,184 KB
testcase_11 AC 43 ms
60,032 KB
testcase_12 AC 53 ms
64,384 KB
testcase_13 AC 55 ms
65,664 KB
testcase_14 AC 46 ms
60,800 KB
testcase_15 AC 64 ms
70,528 KB
testcase_16 AC 56 ms
66,176 KB
testcase_17 AC 54 ms
64,896 KB
testcase_18 AC 56 ms
66,176 KB
testcase_19 AC 58 ms
66,688 KB
testcase_20 AC 53 ms
63,616 KB
testcase_21 AC 59 ms
66,560 KB
testcase_22 AC 59 ms
67,712 KB
testcase_23 AC 59 ms
67,456 KB
testcase_24 AC 50 ms
63,232 KB
testcase_25 AC 59 ms
67,444 KB
testcase_26 AC 58 ms
66,944 KB
testcase_27 AC 59 ms
66,944 KB
testcase_28 AC 59 ms
66,560 KB
testcase_29 AC 52 ms
64,384 KB
testcase_30 AC 96 ms
82,944 KB
testcase_31 AC 91 ms
84,864 KB
testcase_32 AC 144 ms
90,496 KB
testcase_33 AC 260 ms
120,064 KB
testcase_34 AC 459 ms
161,792 KB
testcase_35 AC 482 ms
163,968 KB
testcase_36 AC 492 ms
163,840 KB
testcase_37 AC 506 ms
164,224 KB
testcase_38 AC 423 ms
164,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7
s = input()
n = len(s)
dp = [[[0] * 2 for i in range(100)] for j in range(n + 1)]
dp[0][1][1] = 1
for i in range(n):
    x = int(s[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][0] += dp[i][j][0]
            dp[i + 1][j * k % 100][0] %= mod
            dp[i + 1][j * k % 100][1] %= mod
    dp[i + 1][1][0] += 1
    dp[i + 1][1][0] %= mod
print(sum(dp[-1][0]) % mod)
0