結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー AEnAEn
提出日時 2022-11-23 16:40:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,408 ms / 3,000 ms
コード長 793 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 114,808 KB
最終ジャッジ日時 2024-09-24 20:35:37
合計ジャッジ時間 11,154 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
67,256 KB
testcase_01 AC 79 ms
75,016 KB
testcase_02 AC 85 ms
74,908 KB
testcase_03 AC 53 ms
62,136 KB
testcase_04 AC 72 ms
69,476 KB
testcase_05 AC 71 ms
70,044 KB
testcase_06 AC 70 ms
71,228 KB
testcase_07 AC 74 ms
72,644 KB
testcase_08 AC 79 ms
73,948 KB
testcase_09 AC 78 ms
74,164 KB
testcase_10 AC 77 ms
74,128 KB
testcase_11 AC 64 ms
68,180 KB
testcase_12 AC 90 ms
76,720 KB
testcase_13 AC 90 ms
76,460 KB
testcase_14 AC 71 ms
71,888 KB
testcase_15 AC 107 ms
76,664 KB
testcase_16 AC 96 ms
76,752 KB
testcase_17 AC 96 ms
77,044 KB
testcase_18 AC 102 ms
76,688 KB
testcase_19 AC 116 ms
76,736 KB
testcase_20 AC 113 ms
76,804 KB
testcase_21 AC 113 ms
76,748 KB
testcase_22 AC 112 ms
76,908 KB
testcase_23 AC 115 ms
77,156 KB
testcase_24 AC 101 ms
76,744 KB
testcase_25 AC 115 ms
77,032 KB
testcase_26 AC 115 ms
77,092 KB
testcase_27 AC 113 ms
76,800 KB
testcase_28 AC 115 ms
76,868 KB
testcase_29 AC 118 ms
76,836 KB
testcase_30 AC 206 ms
79,584 KB
testcase_31 AC 175 ms
80,212 KB
testcase_32 AC 343 ms
84,556 KB
testcase_33 AC 554 ms
95,848 KB
testcase_34 AC 1,083 ms
113,580 KB
testcase_35 AC 1,121 ms
114,176 KB
testcase_36 AC 1,123 ms
114,236 KB
testcase_37 AC 1,408 ms
114,808 KB
testcase_38 AC 776 ms
114,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
mod = 10**9+7
NN = str(N)
L = len(NN)
# dp[i][j][k][l]:i桁目まで決めた時に,j:未満フラッグ,k:leading zero, l:mod100
dp = [[[[0]*100 for _ in range(2)] for _ in range(2)] for _ in range(L+1)]
dp[0][0][1][1] = 1
for i in range(L):
    D = int(NN[i])
    for less_f in range(2):
        for leading_f in range(2):
            for m in range(100):
                for d in range(10 if less_f else D+1):
                    # 正整数じゃなくなる
                    if leading_f==0 and d==0:continue
                    dp[i+1][less_f or (d<D)][leading_f and d==0][(m*d)%100 if d!=0 else m] += dp[i][less_f][leading_f][m]
                    dp[i+1][less_f or (d<D)][leading_f and d==0][(m*d)%100 if d!=0 else m] %= mod
print((dp[-1][0][0][0]+dp[-1][1][0][0])%mod)
0