結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー dachengzdachengz
提出日時 2022-12-17 11:56:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 3,000 ms
コード長 1,061 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,552 KB
最終ジャッジ日時 2024-11-16 20:36:39
合計ジャッジ時間 3,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 52 ms
61,568 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 33 ms
51,968 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 33 ms
52,096 KB
testcase_08 AC 34 ms
52,480 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 42 ms
58,752 KB
testcase_13 AC 45 ms
59,776 KB
testcase_14 AC 43 ms
58,752 KB
testcase_15 AC 47 ms
60,800 KB
testcase_16 AC 57 ms
64,512 KB
testcase_17 AC 54 ms
64,640 KB
testcase_18 AC 56 ms
65,664 KB
testcase_19 AC 45 ms
61,696 KB
testcase_20 AC 56 ms
65,408 KB
testcase_21 AC 46 ms
61,696 KB
testcase_22 AC 56 ms
65,792 KB
testcase_23 AC 56 ms
65,792 KB
testcase_24 AC 54 ms
65,920 KB
testcase_25 AC 58 ms
66,176 KB
testcase_26 AC 45 ms
61,568 KB
testcase_27 AC 50 ms
63,744 KB
testcase_28 AC 55 ms
65,664 KB
testcase_29 AC 57 ms
65,664 KB
testcase_30 AC 73 ms
74,880 KB
testcase_31 AC 56 ms
67,328 KB
testcase_32 AC 86 ms
77,440 KB
testcase_33 AC 85 ms
78,336 KB
testcase_34 AC 114 ms
84,480 KB
testcase_35 AC 117 ms
84,992 KB
testcase_36 AC 114 ms
84,992 KB
testcase_37 AC 149 ms
87,552 KB
testcase_38 AC 115 ms
84,992 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, 10]
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