結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー H20H20
提出日時 2021-02-20 03:24:39
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 955 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 276,152 KB
最終ジャッジ日時 2024-09-25 00:22:19
合計ジャッジ時間 16,262 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
71,316 KB
testcase_01 AC 73 ms
70,976 KB
testcase_02 AC 783 ms
88,056 KB
testcase_03 AC 38 ms
53,484 KB
testcase_04 AC 44 ms
59,724 KB
testcase_05 AC 48 ms
62,160 KB
testcase_06 AC 49 ms
61,252 KB
testcase_07 AC 48 ms
62,304 KB
testcase_08 AC 53 ms
63,684 KB
testcase_09 AC 54 ms
63,936 KB
testcase_10 AC 55 ms
65,324 KB
testcase_11 AC 62 ms
67,428 KB
testcase_12 AC 207 ms
79,048 KB
testcase_13 AC 213 ms
79,020 KB
testcase_14 AC 416 ms
81,888 KB
testcase_15 AC 372 ms
81,196 KB
testcase_16 AC 400 ms
82,320 KB
testcase_17 AC 423 ms
82,628 KB
testcase_18 AC 507 ms
84,024 KB
testcase_19 AC 529 ms
82,804 KB
testcase_20 AC 555 ms
84,012 KB
testcase_21 AC 616 ms
84,940 KB
testcase_22 AC 645 ms
84,948 KB
testcase_23 AC 660 ms
85,604 KB
testcase_24 AC 778 ms
87,548 KB
testcase_25 AC 661 ms
84,848 KB
testcase_26 AC 670 ms
85,064 KB
testcase_27 AC 679 ms
85,256 KB
testcase_28 AC 688 ms
86,008 KB
testcase_29 AC 686 ms
85,336 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#assert
from itertools import product

N = input()
if not(1<=int(N)<=10**100):
    print('error')

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][less][divcnt5][divcnt2][has0]

    return dp[n][0][2][2][0]+dp[n][1][2][2][0]

ans = count(N)
for i in range(len(N)):
    ans += count('9'*i)
print(ans%mod)
0