結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー H20H20
提出日時 2021-02-23 20:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,111 ms / 3,000 ms
コード長 807 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 253,444 KB
最終ジャッジ日時 2024-09-25 00:55:51
合計ジャッジ時間 13,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,488 KB
testcase_01 AC 61 ms
69,008 KB
testcase_02 AC 73 ms
77,776 KB
testcase_03 AC 46 ms
61,504 KB
testcase_04 AC 56 ms
65,088 KB
testcase_05 AC 56 ms
65,544 KB
testcase_06 AC 57 ms
65,712 KB
testcase_07 AC 62 ms
68,700 KB
testcase_08 AC 61 ms
67,464 KB
testcase_09 AC 61 ms
67,060 KB
testcase_10 AC 62 ms
68,200 KB
testcase_11 AC 54 ms
64,608 KB
testcase_12 AC 66 ms
71,560 KB
testcase_13 AC 66 ms
71,616 KB
testcase_14 AC 57 ms
68,996 KB
testcase_15 AC 72 ms
75,192 KB
testcase_16 AC 72 ms
75,164 KB
testcase_17 AC 68 ms
74,304 KB
testcase_18 AC 78 ms
77,168 KB
testcase_19 AC 81 ms
77,776 KB
testcase_20 AC 85 ms
77,480 KB
testcase_21 AC 83 ms
77,396 KB
testcase_22 AC 83 ms
77,688 KB
testcase_23 AC 88 ms
78,416 KB
testcase_24 AC 77 ms
77,932 KB
testcase_25 AC 88 ms
78,100 KB
testcase_26 AC 85 ms
77,916 KB
testcase_27 AC 86 ms
77,964 KB
testcase_28 AC 89 ms
78,508 KB
testcase_29 AC 90 ms
78,160 KB
testcase_30 AC 226 ms
90,040 KB
testcase_31 AC 195 ms
93,792 KB
testcase_32 AC 423 ms
111,944 KB
testcase_33 AC 786 ms
164,908 KB
testcase_34 AC 1,630 ms
249,308 KB
testcase_35 AC 1,718 ms
253,144 KB
testcase_36 AC 1,752 ms
253,444 KB
testcase_37 AC 2,111 ms
252,884 KB
testcase_38 AC 1,304 ms
252,652 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(100)] for j in range(2)] for k in range(n+1)]
    dp[0][0][1][1] = 1

    for i, less, mod100, leading0 in product(range(n), (0,1), range(100), (0,1)):
        max_d = 9 if less else int(a[i])
        for d in range(max_d+1):
            if leading0==0 and d==0:
                continue
            less_ = less or d < max_d
            leading0_ = leading0 and d == 0
            if leading0==1 and d==0:
                mod100_ = mod100
            else:
                mod100_ = (mod100*d)%100

            dp[i + 1][less_][mod100_][leading0_] = (dp[i][less][mod100][leading0]+dp[i + 1][less_][mod100_][leading0_])%mod

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

print(count(N))
0