結果

問題 No.1086 桁和の桁和2
ユーザー kotatsugamekotatsugame
提出日時 2020-06-19 22:52:49
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 278 ms / 3,000 ms
コード長 580 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 64,896 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-07-22 17:46:51
合計ジャッジ時間 7,152 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 31
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
const long mod=1e9+7;
long power(long a,long b){return b?power(a*a%mod,b/2)*(b%2?a:1)%mod:1;}
int N;
long L[1<<17],R[1<<17],D[1<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>L[i];
	for(int i=0;i<N;i++)cin>>R[i];
	for(int i=0;i<N;i++)cin>>D[i];
	long ans=1;
	long inv9=power(9,mod-2);
	bool nz=false;
	for(int i=0;i<N;i++)
	{
		if(D[i]==0)
		{
			if(nz)ans=0;
		}
		else
		{
			nz=true;
			long now=(power(10,R[i])-power(10,L[i])+mod)%mod*inv9%mod;
			if(i>0&&D[i-1]==D[i])now=(now+1)%mod;
			ans=ans*now%mod;
		}
	}
	cout<<ans<<endl;
}
0