結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー dachengzdachengz
提出日時 2022-12-17 11:53:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,057 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-11-16 20:34:31
合計ジャッジ時間 3,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 48 ms
61,952 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 RE -
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 RE -
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 34 ms
52,608 KB
testcase_10 RE -
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 41 ms
59,008 KB
testcase_13 AC 42 ms
60,032 KB
testcase_14 AC 39 ms
59,264 KB
testcase_15 AC 44 ms
60,928 KB
testcase_16 AC 51 ms
64,512 KB
testcase_17 AC 51 ms
64,384 KB
testcase_18 AC 60 ms
65,536 KB
testcase_19 AC 46 ms
61,696 KB
testcase_20 RE -
testcase_21 AC 45 ms
61,824 KB
testcase_22 AC 52 ms
65,920 KB
testcase_23 AC 57 ms
66,048 KB
testcase_24 AC 55 ms
66,048 KB
testcase_25 AC 55 ms
66,304 KB
testcase_26 AC 44 ms
61,696 KB
testcase_27 AC 52 ms
63,872 KB
testcase_28 AC 56 ms
65,664 KB
testcase_29 RE -
testcase_30 AC 74 ms
74,880 KB
testcase_31 AC 56 ms
67,328 KB
testcase_32 AC 96 ms
77,696 KB
testcase_33 AC 89 ms
78,208 KB
testcase_34 AC 112 ms
84,608 KB
testcase_35 AC 114 ms
84,864 KB
testcase_36 AC 114 ms
85,120 KB
testcase_37 AC 157 ms
87,680 KB
testcase_38 AC 114 ms
84,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

digits = [int(c) for c in input()]
digits[-1] += 1
l = len(digits)

factors = [1, 2, 4, 5, 10, 20, 25, 50, 100]
d_map1 = [0, 1, 2, 1, 4, 5, 2, 1, 4, 1]
d_map2 = {1: 1, 2: 2, 4: 4, 5: 5, 8: 4, 10: 10, 16: 4, 20: 20, 25: 25, 40: 20, 50: 50, 80: 20, 100: 100, 125: 25, 200: 100, 250: 50, 400: 100, 500: 100}

ans = 0
dp = [{f: 0 for f in factors} for _ in range(l)]
dp[0][1] = 1
for i in range(1, l):
    ndp = dp[i]
    for d in range(1, 10):
        d1 = d_map1[d]
        for k, v in dp[i - 1].items():
            ndp[d_map2[k * d1]] += v
    dp[i] = {f: v % mod for f, v in dp[i].items()}
ans = sum(dp[i][100] for i in range(l)) % mod

prefix = 1
for ind, c in enumerate(digits, start=1):
    pre_dp = {f: 0 for f in factors}
    for d in range(1, c):
        pre_dp[d_map2[prefix * d_map1[d]]] += 1
    for k1, v1 in dp[l - ind].items():
        for k2, v2 in pre_dp.items():
            if k1 * k2 % 100 == 0:
                ans = (ans + v1 * v2) % mod
    if c == 0:
        break
    prefix = d_map2[prefix * d_map1[c]]
print(ans)
0