結果

問題 No.1407 Kindness
ユーザー Izayoi_R_sakura
提出日時 2020-11-29 20:47:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 72,416 KB
最終ジャッジ日時 2025-01-16 10:15:44
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
using namespace std ;
using ll = long long ;
ll mod = 1e9+7 ;

ll modpow(ll a,ll b){
	ll res = 1 ;
	while(b){
		if(b&1) res = res*a%mod ;
		a = a*a%mod ;
		b >>= 1 ;
	}
	return res ;
}

int main(){
	string n ; cin >> n ;
	int d = n.size() ;
	vector<int> sum = {0,1,3,6,10,15,21,28,36,45} ;
	ll ans = sum[n[0]-'0'-1]*modpow(45,d-1)%mod ;
	ll mul = n[0]-'0' ;
	for(int i=1;i<d;i++){
		ans += modpow(45,d-i) ;
		ans += sum[max(0,n[i]-'0'-1)]*modpow(45,d-i-1)%mod*mul%mod ;
		ans %= mod ;
		mul = mul*(n[i]-'0')%mod ;
	}
	ans += mul ;
	cout << ans%mod << endl ;
}
0