結果

問題 No.1086 桁和の桁和2
ユーザー kotatsugamekotatsugame
提出日時 2020-06-19 22:50:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 66,728 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 15:20:14
合計ジャッジ時間 6,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 145 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 96 ms
6,940 KB
testcase_11 AC 26 ms
6,940 KB
testcase_12 AC 7 ms
6,944 KB
testcase_13 AC 117 ms
6,944 KB
testcase_14 AC 72 ms
6,940 KB
testcase_15 AC 33 ms
6,940 KB
testcase_16 AC 185 ms
6,940 KB
testcase_17 AC 17 ms
6,944 KB
testcase_18 AC 256 ms
6,940 KB
testcase_19 AC 208 ms
6,940 KB
testcase_20 AC 27 ms
6,940 KB
testcase_21 AC 184 ms
6,940 KB
testcase_22 AC 254 ms
6,944 KB
testcase_23 AC 154 ms
6,944 KB
testcase_24 AC 114 ms
6,940 KB
testcase_25 AC 217 ms
6,944 KB
testcase_26 AC 181 ms
6,944 KB
testcase_27 AC 131 ms
6,940 KB
testcase_28 AC 111 ms
6,944 KB
testcase_29 AC 121 ms
6,940 KB
testcase_30 AC 267 ms
6,944 KB
testcase_31 AC 271 ms
6,944 KB
testcase_32 AC 268 ms
6,940 KB
testcase_33 AC 267 ms
6,940 KB
testcase_34 AC 263 ms
6,944 KB
testcase_35 AC 143 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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];
	int zc=0;
	for(int i=0;i<N;i++)
	{
		cin>>D[i];
		if(D[i]==0)zc++;
	}
	if(zc>0)
	{
		if(zc==N)cout<<1<<endl;
		else cout<<0<<endl;
		return 0;
	}
	long ans=1;
	long inv9=power(9,mod-2);
	for(int i=0;i<N;i++)
	{
		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