結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー H20H20
提出日時 2021-02-20 02:28:09
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 643 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 278,552 KB
最終ジャッジ日時 2024-09-25 00:22:50
合計ジャッジ時間 21,524 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
79,408 KB
testcase_01 AC 98 ms
76,864 KB
testcase_02 AC 1,297 ms
156,576 KB
testcase_03 AC 46 ms
60,956 KB
testcase_04 AC 66 ms
70,308 KB
testcase_05 AC 71 ms
72,128 KB
testcase_06 AC 70 ms
73,144 KB
testcase_07 AC 75 ms
74,324 KB
testcase_08 AC 74 ms
74,076 KB
testcase_09 AC 74 ms
73,912 KB
testcase_10 AC 77 ms
75,328 KB
testcase_11 AC 90 ms
76,460 KB
testcase_12 AC 127 ms
77,060 KB
testcase_13 AC 141 ms
77,036 KB
testcase_14 AC 227 ms
79,204 KB
testcase_15 AC 300 ms
82,312 KB
testcase_16 AC 340 ms
84,184 KB
testcase_17 AC 371 ms
85,600 KB
testcase_18 AC 569 ms
96,248 KB
testcase_19 AC 627 ms
101,296 KB
testcase_20 AC 661 ms
102,840 KB
testcase_21 AC 1,040 ms
132,732 KB
testcase_22 AC 1,149 ms
141,784 KB
testcase_23 AC 1,200 ms
146,416 KB
testcase_24 AC 1,212 ms
150,020 KB
testcase_25 AC 1,216 ms
149,276 KB
testcase_26 AC 1,245 ms
151,644 KB
testcase_27 AC 1,280 ms
154,460 KB
testcase_28 AC 1,270 ms
154,144 KB
testcase_29 AC 1,271 ms
153,764 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

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][0] = 1

    for i, less, mod100, has0 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):
            less_ = less or d < max_d
            mod100_ = (mod100*d)%100
            has0_ = has0 or d==0
            dp[i + 1][less_][mod100_][has0_] += dp[i][less][mod100][has0]

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

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