結果

問題 No.1086 桁和の桁和2
ユーザー tamatotamato
提出日時 2020-06-25 12:43:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 439 ms / 3,000 ms
コード長 691 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 106,252 KB
最終ジャッジ日時 2024-07-22 18:02:12
合計ジャッジ時間 8,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 41 ms
52,480 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 112 ms
105,432 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
52,212 KB
testcase_08 AC 40 ms
52,544 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 87 ms
90,820 KB
testcase_11 AC 53 ms
70,784 KB
testcase_12 AC 47 ms
60,160 KB
testcase_13 AC 97 ms
96,256 KB
testcase_14 AC 77 ms
88,192 KB
testcase_15 AC 94 ms
70,400 KB
testcase_16 AC 320 ms
94,668 KB
testcase_17 AC 70 ms
64,512 KB
testcase_18 AC 430 ms
105,452 KB
testcase_19 AC 355 ms
96,336 KB
testcase_20 AC 85 ms
68,096 KB
testcase_21 AC 315 ms
94,168 KB
testcase_22 AC 427 ms
106,100 KB
testcase_23 AC 279 ms
91,392 KB
testcase_24 AC 210 ms
88,704 KB
testcase_25 AC 366 ms
101,120 KB
testcase_26 AC 308 ms
93,684 KB
testcase_27 AC 235 ms
88,448 KB
testcase_28 AC 210 ms
87,876 KB
testcase_29 AC 223 ms
86,756 KB
testcase_30 AC 434 ms
105,520 KB
testcase_31 AC 437 ms
105,956 KB
testcase_32 AC 437 ms
106,252 KB
testcase_33 AC 439 ms
106,016 KB
testcase_34 AC 437 ms
105,004 KB
testcase_35 AC 113 ms
105,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    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()))

    ans = 1
    inv9 = pow(9, mod-2, mod)
    flg = 1
    prev = 0
    for d, l, r in zip(D, L, R):
        if d == 0:
            if not flg:
                print(0)
                exit()
        else:
            flg = 0
            a = ((pow(10, r, mod) - pow(10, l, mod))%mod * inv9)%mod
            if d == prev:
                a = (a+1)%mod
            prev = d
            ans = (ans * a)%mod
    print(ans)


if __name__ == '__main__':
    main()
0