結果

問題 No.1407 Kindness
ユーザー roarisroaris
提出日時 2021-03-02 04:20:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-10-03 01:30:20
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 42 ms
52,096 KB
testcase_12 AC 107 ms
84,736 KB
testcase_13 AC 71 ms
72,064 KB
testcase_14 AC 74 ms
74,240 KB
testcase_15 AC 102 ms
83,584 KB
testcase_16 AC 92 ms
80,768 KB
testcase_17 AC 86 ms
79,232 KB
testcase_18 AC 83 ms
78,848 KB
testcase_19 AC 105 ms
83,200 KB
testcase_20 AC 100 ms
81,920 KB
testcase_21 AC 63 ms
66,688 KB
testcase_22 AC 64 ms
67,072 KB
testcase_23 AC 92 ms
81,408 KB
testcase_24 AC 110 ms
85,760 KB
testcase_25 AC 82 ms
78,848 KB
testcase_26 AC 89 ms
80,640 KB
testcase_27 AC 65 ms
67,200 KB
testcase_28 AC 112 ms
83,584 KB
testcase_29 AC 64 ms
65,792 KB
testcase_30 AC 110 ms
84,864 KB
testcase_31 AC 70 ms
71,936 KB
testcase_32 AC 101 ms
83,456 KB
testcase_33 AC 75 ms
74,368 KB
testcase_34 AC 96 ms
81,280 KB
testcase_35 AC 72 ms
72,320 KB
testcase_36 AC 65 ms
65,280 KB
testcase_37 AC 104 ms
85,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

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

print(sum(dp[L])%MOD)
0