結果

問題 No.1086 桁和の桁和2
ユーザー tyawanmusityawanmusi
提出日時 2020-01-20 19:39:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,369 ms / 3,000 ms
コード長 896 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,476 KB
最終ジャッジ日時 2024-07-22 17:37:36
合計ジャッジ時間 40,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 1,949 ms
26,256 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 24 ms
10,880 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 1,207 ms
20,068 KB
testcase_11 AC 340 ms
13,912 KB
testcase_12 AC 84 ms
11,264 KB
testcase_13 AC 1,527 ms
22,728 KB
testcase_14 AC 971 ms
18,556 KB
testcase_15 AC 283 ms
12,532 KB
testcase_16 AC 1,500 ms
21,292 KB
testcase_17 AC 145 ms
11,648 KB
testcase_18 AC 2,101 ms
25,452 KB
testcase_19 AC 1,713 ms
22,764 KB
testcase_20 AC 233 ms
12,484 KB
testcase_21 AC 1,478 ms
20,996 KB
testcase_22 AC 2,369 ms
25,428 KB
testcase_23 AC 1,305 ms
19,612 KB
testcase_24 AC 896 ms
17,148 KB
testcase_25 AC 1,770 ms
23,124 KB
testcase_26 AC 1,454 ms
20,932 KB
testcase_27 AC 1,046 ms
18,156 KB
testcase_28 AC 864 ms
16,928 KB
testcase_29 AC 983 ms
17,756 KB
testcase_30 AC 2,134 ms
26,296 KB
testcase_31 AC 2,147 ms
26,424 KB
testcase_32 AC 2,194 ms
26,476 KB
testcase_33 AC 2,150 ms
26,288 KB
testcase_34 AC 2,147 ms
26,344 KB
testcase_35 AC 1,945 ms
26,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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