結果

問題 No.1407 Kindness
ユーザー 沙耶花沙耶花
提出日時 2021-02-26 21:29:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 4,436 ms
コンパイル使用メモリ 267,252 KB
実行使用メモリ 42,484 KB
最終ジャッジ日時 2024-10-02 14:01:02
合計ジャッジ時間 7,171 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
28,288 KB
testcase_01 AC 34 ms
28,372 KB
testcase_02 AC 33 ms
28,288 KB
testcase_03 AC 34 ms
28,160 KB
testcase_04 AC 33 ms
28,160 KB
testcase_05 AC 34 ms
28,288 KB
testcase_06 AC 33 ms
28,288 KB
testcase_07 AC 34 ms
28,288 KB
testcase_08 AC 34 ms
28,288 KB
testcase_09 AC 35 ms
28,288 KB
testcase_10 AC 34 ms
28,416 KB
testcase_11 AC 34 ms
28,160 KB
testcase_12 AC 75 ms
40,832 KB
testcase_13 AC 42 ms
31,104 KB
testcase_14 AC 43 ms
31,952 KB
testcase_15 AC 71 ms
39,936 KB
testcase_16 AC 54 ms
35,580 KB
testcase_17 AC 48 ms
33,212 KB
testcase_18 AC 46 ms
32,768 KB
testcase_19 AC 67 ms
38,656 KB
testcase_20 AC 58 ms
36,912 KB
testcase_21 AC 37 ms
28,928 KB
testcase_22 AC 37 ms
29,312 KB
testcase_23 AC 57 ms
36,480 KB
testcase_24 AC 77 ms
42,296 KB
testcase_25 AC 46 ms
32,768 KB
testcase_26 AC 53 ms
34,816 KB
testcase_27 AC 36 ms
29,184 KB
testcase_28 AC 70 ms
39,628 KB
testcase_29 AC 35 ms
28,744 KB
testcase_30 AC 74 ms
40,832 KB
testcase_31 AC 42 ms
31,016 KB
testcase_32 AC 68 ms
39,040 KB
testcase_33 AC 44 ms
32,128 KB
testcase_34 AC 63 ms
36,332 KB
testcase_35 AC 46 ms
31,472 KB
testcase_36 AC 35 ms
28,640 KB
testcase_37 AC 73 ms
42,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

string N;

mint get(int ind,int f){
	if(ind==N.size())return 1;
	static vector dp(200000,vector<mint>(2,0));
	static vector visited(200000,vector<bool>(2,false));
	if(visited[ind][f])return dp[ind][f];
	
	visited[ind][f] = true;
	mint ret = 0;
	
	rep(i,10){
		int t =  N[ind] - '0';
		if(i<t){
			ret += get(ind+1,1) * i;
		}
		else if(i==t){
			ret += get(ind+1,f) * i;
		}
		else{
			if(f==0)continue;
			ret += get(ind+1,f) * i;
		}
	}
	dp[ind][f] = ret;
	return ret;
	
}

int main(){
	
	cin>>N;
	//reverse(N.begin(),N.end());
	
	mint ans = get(0,0);
	
	rep(i,N.size()){
	
		ans += mint(45).pow(i);
	}
	ans--;
	
	cout<<ans.val()<<endl;
	
    return 0;
}
0