結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー H20H20
提出日時 2021-02-26 20:04:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 984 ms / 3,000 ms
コード長 1,023 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 128,020 KB
最終ジャッジ日時 2024-10-02 12:25:42
合計ジャッジ時間 13,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
62,336 KB
testcase_01 AC 57 ms
64,256 KB
testcase_02 AC 240 ms
79,488 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 45 ms
59,648 KB
testcase_05 AC 47 ms
59,776 KB
testcase_06 AC 45 ms
60,004 KB
testcase_07 AC 47 ms
59,776 KB
testcase_08 AC 49 ms
61,056 KB
testcase_09 AC 51 ms
61,696 KB
testcase_10 AC 53 ms
62,464 KB
testcase_11 AC 51 ms
61,824 KB
testcase_12 AC 110 ms
77,020 KB
testcase_13 AC 111 ms
77,060 KB
testcase_14 AC 134 ms
77,452 KB
testcase_15 AC 168 ms
78,612 KB
testcase_16 AC 170 ms
78,736 KB
testcase_17 AC 191 ms
79,372 KB
testcase_18 AC 234 ms
79,772 KB
testcase_19 AC 227 ms
79,132 KB
testcase_20 AC 257 ms
80,372 KB
testcase_21 AC 267 ms
80,248 KB
testcase_22 AC 269 ms
80,708 KB
testcase_23 AC 271 ms
80,652 KB
testcase_24 AC 243 ms
80,004 KB
testcase_25 AC 269 ms
80,708 KB
testcase_26 AC 274 ms
80,148 KB
testcase_27 AC 274 ms
80,524 KB
testcase_28 AC 286 ms
80,204 KB
testcase_29 AC 289 ms
80,544 KB
testcase_30 AC 423 ms
85,224 KB
testcase_31 AC 369 ms
85,888 KB
testcase_32 AC 505 ms
91,352 KB
testcase_33 AC 622 ms
103,924 KB
testcase_34 AC 975 ms
126,804 KB
testcase_35 AC 979 ms
127,800 KB
testcase_36 AC 984 ms
128,020 KB
testcase_37 AC 967 ms
127,008 KB
testcase_38 AC 798 ms
125,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

N = input()
mod=10**9+7

def count(a):
    n = len(a)
    dp=[[[[[0] * 2 for i in range(3)] for j in range(3)] for k in range(2)] for l in range(n+1)]
    dp[0][0][0][0][0] = 1

    for i, less, divcnt5, divcnt2, has0 in product(range(n), (0,1), range(3), range(3), (0,1)):
        max_d = 9 if less else int(a[i])
        for d in range(max_d+1):
            less_ = less or d < max_d
            divcnt5_ = min(2,divcnt5+(d==5))
            if d==4 or d==8:
                divcnt2_=2
            elif d==2 or d==6:
                divcnt2_=min(2,divcnt2+1)
            else:
                divcnt2_ = divcnt2
            has0_ = has0 or d==0
            dp[i + 1][less_][divcnt5_][divcnt2_][has0_] = (dp[i + 1][less_][divcnt5_][divcnt2_][has0_] + dp[i][less][divcnt5][divcnt2][has0])%mod

    return dp

dp = count(N)
ans = (dp[-1][0][2][2][0]+dp[-1][1][2][2][0])%mod
dp = count('9'*(len(N)-1))
for i in range(len(N)):
    ans = (ans + dp[i][0][2][2][0]+dp[i][1][2][2][0])%mod
print(ans)
0