結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー tcltktcltk
提出日時 2021-09-19 15:18:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 474 ms / 3,000 ms
コード長 1,507 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 115,572 KB
最終ジャッジ日時 2024-07-01 18:32:02
合計ジャッジ時間 10,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
86,656 KB
testcase_01 AC 153 ms
88,960 KB
testcase_02 AC 192 ms
90,368 KB
testcase_03 AC 138 ms
86,528 KB
testcase_04 AC 142 ms
86,400 KB
testcase_05 AC 139 ms
86,528 KB
testcase_06 AC 143 ms
86,528 KB
testcase_07 AC 143 ms
86,784 KB
testcase_08 AC 140 ms
86,528 KB
testcase_09 AC 140 ms
86,528 KB
testcase_10 AC 152 ms
89,344 KB
testcase_11 AC 140 ms
86,528 KB
testcase_12 AC 175 ms
89,600 KB
testcase_13 AC 171 ms
89,856 KB
testcase_14 AC 170 ms
89,600 KB
testcase_15 AC 193 ms
90,240 KB
testcase_16 AC 196 ms
89,728 KB
testcase_17 AC 193 ms
90,112 KB
testcase_18 AC 196 ms
89,856 KB
testcase_19 AC 219 ms
89,856 KB
testcase_20 AC 199 ms
90,240 KB
testcase_21 AC 218 ms
90,496 KB
testcase_22 AC 214 ms
90,112 KB
testcase_23 AC 215 ms
89,856 KB
testcase_24 AC 184 ms
90,112 KB
testcase_25 AC 221 ms
90,368 KB
testcase_26 AC 223 ms
89,856 KB
testcase_27 AC 227 ms
90,496 KB
testcase_28 AC 218 ms
90,112 KB
testcase_29 AC 203 ms
90,112 KB
testcase_30 AC 211 ms
91,648 KB
testcase_31 AC 221 ms
92,544 KB
testcase_32 AC 291 ms
95,104 KB
testcase_33 AC 327 ms
102,752 KB
testcase_34 AC 458 ms
114,724 KB
testcase_35 AC 463 ms
115,572 KB
testcase_36 AC 458 ms
115,360 KB
testcase_37 AC 474 ms
114,304 KB
testcase_38 AC 372 ms
114,176 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 = """123456
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

MOD = 1000000007


N = input()
L = len(N)

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

for i in range(L):
    for n2 in range(3):
        for n5 in range(3):
            for lzero in [0, 1]:
                for less in [0, 1]:
                    if lzero:
                        dp[i+1][0][0][1][1] = (dp[i+1][0][0][1][1] + dp[i][n2][n5][lzero][less]) % MOD
                    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][0][less_1] = (dp[i+1][n2_1][n5_1][0][less_1] + dp[i][n2][n5][lzero][less]) % MOD

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