結果

問題 No.1086 桁和の桁和2
ユーザー tyawanmusityawanmusi
提出日時 2020-01-20 20:22:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 526 ms / 3,000 ms
コード長 907 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,636 KB
最終ジャッジ日時 2024-07-22 17:39:00
合計ジャッジ時間 11,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 489 ms
108,448 KB
testcase_06 AC 34 ms
53,080 KB
testcase_07 AC 33 ms
53,692 KB
testcase_08 AC 37 ms
52,244 KB
testcase_09 AC 32 ms
53,520 KB
testcase_10 AC 307 ms
92,604 KB
testcase_11 AC 126 ms
78,120 KB
testcase_12 AC 63 ms
66,304 KB
testcase_13 AC 385 ms
97,248 KB
testcase_14 AC 266 ms
89,856 KB
testcase_15 AC 108 ms
73,728 KB
testcase_16 AC 375 ms
94,780 KB
testcase_17 AC 80 ms
69,376 KB
testcase_18 AC 504 ms
108,012 KB
testcase_19 AC 416 ms
96,888 KB
testcase_20 AC 100 ms
72,576 KB
testcase_21 AC 371 ms
94,708 KB
testcase_22 AC 500 ms
108,332 KB
testcase_23 AC 328 ms
93,600 KB
testcase_24 AC 246 ms
89,216 KB
testcase_25 AC 439 ms
102,860 KB
testcase_26 AC 365 ms
94,524 KB
testcase_27 AC 279 ms
89,472 KB
testcase_28 AC 236 ms
88,960 KB
testcase_29 AC 256 ms
87,980 KB
testcase_30 AC 515 ms
107,564 KB
testcase_31 AC 510 ms
108,572 KB
testcase_32 AC 526 ms
108,636 KB
testcase_33 AC 520 ms
108,376 KB
testcase_34 AC 506 ms
107,592 KB
testcase_35 AC 474 ms
108,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#writer解
mod = 10**9 + 7
n = int(input())
l = list(map(int, input().split()))
r = list(map(int, input().split()))
d = list(map(int, input().split()))

def calc(l, r, di, dj):
  #(10^l <= a < 10^r or a=0) and f(di+f(a))=djを満たすaの数
  if dj == 0:
    if di == 0:
      #di==dj==0のとき、a=0の1通りのみ
      return 1
    else:
      #di!=dj==0のとき、条件を満たすaは存在しない
      return 0
  else:
    #aの総数は(10^r - 10^l)/9で一般化される
    #di==djの時、a=0の1通りが加算される
    ans_r = pow(10, r, mod) * pow(9, mod - 2, mod)#逆元です
    ans_l = pow(10, l, mod) * pow(9, mod - 2, mod)
    ans=(ans_r + (mod - ans_l)) % mod
    if di == dj:
      ans += 1
      ans %= mod#これ必要ですか?
    return ans

ans = calc(l[0], r[0], 0, d[0])
for i in range(1, n):
    ans *= calc(l[i], r[i], d[i - 1], d[i])
    ans %= mod

print(ans)
0