結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー H20H20
提出日時 2021-02-23 20:50:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 3,000 ms
コード長 860 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 101,544 KB
最終ジャッジ日時 2024-09-25 00:21:11
合計ジャッジ時間 7,335 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,864 KB
testcase_01 AC 48 ms
61,056 KB
testcase_02 AC 94 ms
76,684 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 43 ms
58,880 KB
testcase_08 AC 47 ms
59,520 KB
testcase_09 AC 45 ms
59,520 KB
testcase_10 AC 46 ms
60,076 KB
testcase_11 AC 40 ms
52,736 KB
testcase_12 AC 67 ms
70,528 KB
testcase_13 AC 70 ms
71,040 KB
testcase_14 AC 71 ms
72,576 KB
testcase_15 AC 99 ms
76,792 KB
testcase_16 AC 100 ms
76,672 KB
testcase_17 AC 100 ms
76,528 KB
testcase_18 AC 117 ms
77,616 KB
testcase_19 AC 108 ms
77,148 KB
testcase_20 AC 113 ms
77,276 KB
testcase_21 AC 124 ms
77,580 KB
testcase_22 AC 124 ms
77,644 KB
testcase_23 AC 130 ms
77,576 KB
testcase_24 AC 102 ms
76,544 KB
testcase_25 AC 126 ms
77,560 KB
testcase_26 AC 127 ms
77,484 KB
testcase_27 AC 127 ms
77,912 KB
testcase_28 AC 134 ms
77,804 KB
testcase_29 AC 132 ms
77,768 KB
testcase_30 AC 200 ms
79,988 KB
testcase_31 AC 153 ms
79,788 KB
testcase_32 AC 235 ms
83,596 KB
testcase_33 AC 288 ms
89,820 KB
testcase_34 AC 461 ms
101,088 KB
testcase_35 AC 450 ms
101,544 KB
testcase_36 AC 460 ms
101,492 KB
testcase_37 AC 466 ms
100,824 KB
testcase_38 AC 312 ms
99,948 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][1] = 1
    candiv2=[0,0,1,0,2,0,1,0,3,0]

    for i, less, divcnt5, divcnt2, lzero 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):
            if lzero==0 and d==0:
                continue
            less_ = less or d < max_d
            divcnt5_ = min(2,divcnt5+(d==5))
            divcnt2_ = min(2,divcnt2+candiv2[d])
            lzero_ = lzero and d==0
            dp[i + 1][less_][divcnt5_][divcnt2_][lzero_] = (dp[i + 1][less_][divcnt5_][divcnt2_][lzero_] + dp[i][less][divcnt5][divcnt2][lzero])%mod

    return (dp[n][0][2][2][0]+dp[n][1][2][2][0])%mod

print(count(N))
0