結果

問題 No.1086 桁和の桁和2
ユーザー titiatitia
提出日時 2020-06-19 23:39:37
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 480 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 106,476 KB
最終ジャッジ日時 2024-07-22 17:54:05
合計ジャッジ時間 9,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 35 ms
52,352 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 35 ms
51,712 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 244 ms
91,520 KB
testcase_11 AC 103 ms
75,120 KB
testcase_12 AC 54 ms
62,848 KB
testcase_13 AC 296 ms
96,684 KB
testcase_14 AC 210 ms
87,808 KB
testcase_15 AC 90 ms
71,552 KB
testcase_16 AC 286 ms
94,368 KB
testcase_17 AC 64 ms
65,664 KB
testcase_18 AC 373 ms
105,528 KB
testcase_19 AC 314 ms
96,960 KB
testcase_20 AC 79 ms
69,248 KB
testcase_21 AC 282 ms
94,352 KB
testcase_22 AC 379 ms
105,784 KB
testcase_23 AC 249 ms
91,460 KB
testcase_24 AC 187 ms
88,320 KB
testcase_25 AC 326 ms
100,852 KB
testcase_26 AC 277 ms
93,996 KB
testcase_27 AC 219 ms
87,832 KB
testcase_28 AC 197 ms
87,476 KB
testcase_29 AC 207 ms
86,528 KB
testcase_30 AC 397 ms
105,340 KB
testcase_31 AC 381 ms
106,388 KB
testcase_32 AC 391 ms
106,004 KB
testcase_33 AC 387 ms
105,748 KB
testcase_34 AC 386 ms
105,092 KB
testcase_35 AC 354 ms
106,080 KB
権限があれば一括ダウンロードができます

ソースコード

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]==0:
        ANS=1

    elif D[i]==0:
        ANS=0

    elif 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