結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー roarisroaris
提出日時 2021-03-05 21:37:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,225 ms / 3,000 ms
コード長 682 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 114,548 KB
最終ジャッジ日時 2024-10-07 00:59:53
合計ジャッジ時間 9,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
67,840 KB
testcase_01 AC 80 ms
72,576 KB
testcase_02 AC 80 ms
72,832 KB
testcase_03 AC 54 ms
62,848 KB
testcase_04 AC 66 ms
66,560 KB
testcase_05 AC 76 ms
73,088 KB
testcase_06 AC 76 ms
72,960 KB
testcase_07 AC 70 ms
68,864 KB
testcase_08 AC 77 ms
72,576 KB
testcase_09 AC 79 ms
72,320 KB
testcase_10 AC 75 ms
70,144 KB
testcase_11 AC 68 ms
67,968 KB
testcase_12 AC 85 ms
75,136 KB
testcase_13 AC 83 ms
74,112 KB
testcase_14 AC 74 ms
71,168 KB
testcase_15 AC 105 ms
76,704 KB
testcase_16 AC 91 ms
76,800 KB
testcase_17 AC 96 ms
77,184 KB
testcase_18 AC 98 ms
77,440 KB
testcase_19 AC 101 ms
76,928 KB
testcase_20 AC 98 ms
77,064 KB
testcase_21 AC 103 ms
77,184 KB
testcase_22 AC 98 ms
77,184 KB
testcase_23 AC 99 ms
77,312 KB
testcase_24 AC 83 ms
72,704 KB
testcase_25 AC 101 ms
76,992 KB
testcase_26 AC 102 ms
77,080 KB
testcase_27 AC 102 ms
76,928 KB
testcase_28 AC 103 ms
77,100 KB
testcase_29 AC 99 ms
77,184 KB
testcase_30 AC 185 ms
79,708 KB
testcase_31 AC 157 ms
80,896 KB
testcase_32 AC 306 ms
85,480 KB
testcase_33 AC 499 ms
96,000 KB
testcase_34 AC 1,008 ms
113,664 KB
testcase_35 AC 1,007 ms
114,176 KB
testcase_36 AC 1,030 ms
114,548 KB
testcase_37 AC 1,225 ms
114,488 KB
testcase_38 AC 687 ms
114,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = input()[:-1]
L = len(N)
dp = [[[[0]*100 for _ in range(2)] for _ in range(2)] for _ in range(L+1)]
dp[0][0][0][1] = 1
MOD = 10**9+7

for i in range(L):
    d = int(N[i])
    
    for j in range(2):
        for k in range(2):
            for l in range(10 if j else d+1):
                if k==1 and l==0:
                    continue
                
                for m in range(100):
                    m2 = 1 if k==0 and l==0 else m*l%100
                    dp[i+1][j|(l<d)][k|(l>0)][m2] += dp[i][j][k][m]
                    dp[i+1][j|(l<d)][k|(l>0)][m2] %= MOD

print((dp[L][0][1][0]+dp[L][1][1][0])%MOD)
0