結果

問題 No.1086 桁和の桁和2
ユーザー titiatitia
提出日時 2020-06-19 23:20:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 106,404 KB
最終ジャッジ日時 2024-07-03 15:44:58
合計ジャッジ時間 9,659 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 36 ms
52,212 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 90 ms
71,552 KB
testcase_16 AC 290 ms
94,900 KB
testcase_17 AC 65 ms
65,408 KB
testcase_18 AC 397 ms
105,460 KB
testcase_19 AC 332 ms
96,716 KB
testcase_20 AC 80 ms
69,376 KB
testcase_21 AC 286 ms
94,500 KB
testcase_22 AC 380 ms
105,916 KB
testcase_23 AC 262 ms
91,432 KB
testcase_24 AC 201 ms
88,212 KB
testcase_25 AC 338 ms
100,796 KB
testcase_26 AC 289 ms
94,032 KB
testcase_27 AC 218 ms
88,192 KB
testcase_28 AC 198 ms
87,168 KB
testcase_29 AC 203 ms
86,712 KB
testcase_30 AC 391 ms
105,132 KB
testcase_31 AC 392 ms
106,276 KB
testcase_32 AC 395 ms
106,204 KB
testcase_33 AC 398 ms
105,880 KB
testcase_34 AC 408 ms
105,092 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
L=list(map(int,input().split()))
R=list(map(int,input().split()))
D=list(map(int,input().split()))

D.append(0)

mod=10**9+7

ANS=1

NI=pow(9,mod-2,mod)

for i in range(N):

    if D[i]==D[i-1]:
        ANS=ANS*(1+(pow(10,R[i],mod)-pow(10,L[i],mod))*NI)%mod
    else:
        ANS=ANS*(pow(10,R[i],mod)-pow(10,L[i],mod))*NI%mod
        

print(ANS%mod)
0