結果

問題 No.1407 Kindness
ユーザー convexineqconvexineq
提出日時 2021-02-27 06:13:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 101,368 KB
最終ジャッジ日時 2024-10-02 16:59:05
合計ジャッジ時間 6,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,204 KB
testcase_01 AC 39 ms
52,684 KB
testcase_02 AC 38 ms
52,748 KB
testcase_03 AC 40 ms
53,492 KB
testcase_04 AC 38 ms
53,032 KB
testcase_05 AC 38 ms
52,540 KB
testcase_06 AC 39 ms
53,012 KB
testcase_07 AC 38 ms
52,816 KB
testcase_08 AC 39 ms
53,068 KB
testcase_09 AC 38 ms
53,620 KB
testcase_10 AC 38 ms
53,212 KB
testcase_11 AC 38 ms
53,272 KB
testcase_12 AC 240 ms
98,988 KB
testcase_13 AC 118 ms
80,948 KB
testcase_14 AC 131 ms
83,052 KB
testcase_15 AC 236 ms
96,416 KB
testcase_16 AC 179 ms
89,076 KB
testcase_17 AC 149 ms
85,156 KB
testcase_18 AC 146 ms
84,768 KB
testcase_19 AC 218 ms
95,196 KB
testcase_20 AC 191 ms
92,080 KB
testcase_21 AC 97 ms
78,188 KB
testcase_22 AC 92 ms
77,936 KB
testcase_23 AC 191 ms
90,736 KB
testcase_24 AC 255 ms
101,368 KB
testcase_25 AC 145 ms
85,176 KB
testcase_26 AC 167 ms
88,100 KB
testcase_27 AC 97 ms
78,696 KB
testcase_28 AC 226 ms
96,344 KB
testcase_29 AC 86 ms
77,428 KB
testcase_30 AC 242 ms
98,568 KB
testcase_31 AC 118 ms
81,624 KB
testcase_32 AC 242 ms
95,100 KB
testcase_33 AC 135 ms
83,316 KB
testcase_34 AC 201 ms
90,560 KB
testcase_35 AC 125 ms
81,940 KB
testcase_36 AC 81 ms
77,252 KB
testcase_37 AC 225 ms
101,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
MOD = 10**9+7
dp = [[[0 for _ in range(2)] for _ in range(2)] for _ in range(len(n)+1)] # 上からi桁まで、is_less, 0埋めか?
 
dp[0][0][0] = 1
for i,ni in enumerate(n): #i桁目からi+1桁目に遷移
    ni = int(ni)
    for is_non0 in range(2):
        for is_less in range(2):#1 なら真に小さい
            for d in range(10 if is_less else ni+1): # d: i+1桁目の数字
                dp[i+1][is_less or d < ni][is_non0 or d!=0] += dp[i][is_less][is_non0]*(d if is_non0 or d else 1)
                dp[i+1][is_less or d < ni][is_non0 or d!=0] %= MOD

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