結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー tcltktcltk
提出日時 2021-09-19 14:43:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 3,000 ms
コード長 1,294 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,864 KB
最終ジャッジ日時 2024-07-01 17:52:23
合計ジャッジ時間 9,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
86,528 KB
testcase_01 AC 140 ms
86,400 KB
testcase_02 AC 179 ms
89,856 KB
testcase_03 AC 136 ms
86,016 KB
testcase_04 AC 139 ms
86,400 KB
testcase_05 AC 139 ms
86,272 KB
testcase_06 AC 136 ms
86,400 KB
testcase_07 AC 138 ms
86,144 KB
testcase_08 AC 139 ms
86,528 KB
testcase_09 AC 136 ms
86,144 KB
testcase_10 AC 137 ms
86,272 KB
testcase_11 AC 139 ms
86,656 KB
testcase_12 AC 153 ms
89,216 KB
testcase_13 AC 154 ms
89,088 KB
testcase_14 AC 155 ms
89,600 KB
testcase_15 AC 168 ms
89,728 KB
testcase_16 AC 172 ms
89,728 KB
testcase_17 AC 172 ms
89,728 KB
testcase_18 AC 176 ms
89,728 KB
testcase_19 AC 179 ms
89,344 KB
testcase_20 AC 182 ms
89,728 KB
testcase_21 AC 192 ms
89,984 KB
testcase_22 AC 192 ms
90,240 KB
testcase_23 AC 191 ms
89,984 KB
testcase_24 AC 170 ms
89,472 KB
testcase_25 AC 195 ms
89,856 KB
testcase_26 AC 192 ms
90,240 KB
testcase_27 AC 190 ms
90,112 KB
testcase_28 AC 196 ms
90,112 KB
testcase_29 AC 190 ms
89,344 KB
testcase_30 AC 193 ms
90,368 KB
testcase_31 AC 199 ms
91,008 KB
testcase_32 AC 247 ms
92,076 KB
testcase_33 AC 244 ms
95,104 KB
testcase_34 AC 322 ms
100,096 KB
testcase_35 AC 309 ms
100,608 KB
testcase_36 AC 328 ms
100,864 KB
testcase_37 AC 319 ms
100,096 KB
testcase_38 AC 273 ms
100,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """1000
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

MOD = 1000000007


N = input()
L = len(N)

dp = [[[[0, 0] for _ in range(3)] for _ in range(3)] for _ in range(L+1)]
dp[0][0][0][0] = 1
for i in range(1, L+1):
    dp[i][0][0][1] = 1


for i in range(L):
    for n2 in range(3):
        for n5 in range(3):
            for less in [0, 1]:
                for k in range(1, 10 if less else int(N[i])+1):
                    less_1 = less | (k < int(N[i]))
                    n2_1 = n2
                    n5_1 = n5
                    if k == 2:
                        n2_1 = min(n2+1, 2)
                    elif k == 4:
                        n2_1 = 2
                    elif k == 5:
                        n5_1 = min(n5+1, 2)
                    elif k == 6:
                        n2_1 = min(n2+1, 2)
                    elif k == 8:
                        n2_1 = 2
                    dp[i+1][n2_1][n5_1][less_1] = (dp[i+1][n2_1][n5_1][less_1] + dp[i][n2][n5][less]) % MOD

ans = sum(dp[L][2][2]) % MOD
print(ans)
0