結果

問題 No.1407 Kindness
ユーザー convexineqconvexineq
提出日時 2021-02-27 06:12:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 101,096 KB
最終ジャッジ日時 2024-10-02 16:58:58
合計ジャッジ時間 6,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,392 KB
testcase_01 AC 39 ms
53,812 KB
testcase_02 AC 39 ms
52,584 KB
testcase_03 AC 41 ms
52,404 KB
testcase_04 AC 39 ms
52,232 KB
testcase_05 AC 38 ms
52,080 KB
testcase_06 AC 39 ms
52,876 KB
testcase_07 AC 40 ms
53,200 KB
testcase_08 AC 38 ms
52,748 KB
testcase_09 AC 38 ms
52,908 KB
testcase_10 AC 39 ms
52,796 KB
testcase_11 AC 39 ms
52,884 KB
testcase_12 AC 244 ms
98,780 KB
testcase_13 AC 114 ms
80,696 KB
testcase_14 AC 129 ms
83,424 KB
testcase_15 AC 234 ms
97,012 KB
testcase_16 AC 175 ms
89,116 KB
testcase_17 AC 145 ms
85,680 KB
testcase_18 AC 144 ms
84,972 KB
testcase_19 AC 215 ms
95,320 KB
testcase_20 AC 196 ms
92,048 KB
testcase_21 AC 96 ms
78,456 KB
testcase_22 AC 91 ms
78,236 KB
testcase_23 AC 188 ms
90,852 KB
testcase_24 AC 264 ms
101,040 KB
testcase_25 AC 143 ms
84,972 KB
testcase_26 AC 168 ms
88,108 KB
testcase_27 AC 100 ms
78,960 KB
testcase_28 AC 228 ms
96,496 KB
testcase_29 AC 87 ms
77,344 KB
testcase_30 AC 242 ms
98,664 KB
testcase_31 AC 119 ms
81,756 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 199 ms
90,136 KB
testcase_35 AC 124 ms
81,904 KB
testcase_36 AC 81 ms
77,096 KB
testcase_37 AC 212 ms
101,096 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])
0