結果

問題 No.1086 桁和の桁和2
ユーザー mkawa2mkawa2
提出日時 2022-07-17 18:46:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,127 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,088 KB
最終ジャッジ日時 2024-06-29 19:57:43
合計ジャッジ時間 8,188 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,968 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 33 ms
52,612 KB
testcase_03 AC 31 ms
51,968 KB
testcase_04 AC 32 ms
52,004 KB
testcase_05 AC 95 ms
105,380 KB
testcase_06 AC 32 ms
51,968 KB
testcase_07 AC 32 ms
52,352 KB
testcase_08 WA -
testcase_09 AC 32 ms
52,608 KB
testcase_10 AC 69 ms
91,300 KB
testcase_11 AC 43 ms
71,040 KB
testcase_12 AC 36 ms
60,416 KB
testcase_13 AC 78 ms
95,656 KB
testcase_14 AC 63 ms
88,356 KB
testcase_15 AC 81 ms
72,832 KB
testcase_16 AC 276 ms
94,276 KB
testcase_17 AC 64 ms
67,200 KB
testcase_18 WA -
testcase_19 AC 312 ms
98,560 KB
testcase_20 AC 74 ms
70,656 KB
testcase_21 AC 272 ms
94,600 KB
testcase_22 AC 367 ms
106,000 KB
testcase_23 AC 243 ms
91,504 KB
testcase_24 AC 181 ms
87,284 KB
testcase_25 AC 333 ms
101,188 KB
testcase_26 AC 268 ms
94,632 KB
testcase_27 AC 204 ms
87,808 KB
testcase_28 AC 178 ms
87,100 KB
testcase_29 WA -
testcase_30 AC 379 ms
105,716 KB
testcase_31 AC 381 ms
106,016 KB
testcase_32 WA -
testcase_33 AC 378 ms
106,160 KB
testcase_34 AC 382 ms
105,412 KB
testcase_35 AC 92 ms
105,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

def cnt(e):
    return (pow(10, e, md)-1)*inv%md

inv = pow(9, md-2, md)
n = II()
ll = LI()
rr = LI()
dd = LI()

ans = 1
pd = 0
zero = True
for l, r, d in zip(ll, rr, dd):
    if d == 0:
        if zero:
            continue
        else:
            print(0)
            exit()
    zero = False
    cur = cnt(r)-cnt(l)
    if (d-pd)%9 == 0: cur += 1
    ans *= cur
    ans %= md
    pd = d

print(ans)
0