結果

問題 No.1086 桁和の桁和2
ユーザー googol_S0googol_S0
提出日時 2020-06-19 22:10:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 681 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 116,636 KB
最終ジャッジ日時 2024-07-03 14:51:19
合計ジャッジ時間 8,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,892 KB
testcase_01 AC 38 ms
53,068 KB
testcase_02 AC 38 ms
52,004 KB
testcase_03 AC 38 ms
53,428 KB
testcase_04 AC 39 ms
52,620 KB
testcase_05 AC 108 ms
107,320 KB
testcase_06 AC 37 ms
54,076 KB
testcase_07 AC 37 ms
52,328 KB
testcase_08 AC 38 ms
52,824 KB
testcase_09 AC 37 ms
53,020 KB
testcase_10 AC 81 ms
92,588 KB
testcase_11 AC 49 ms
71,868 KB
testcase_12 AC 42 ms
60,568 KB
testcase_13 AC 95 ms
96,332 KB
testcase_14 AC 76 ms
89,892 KB
testcase_15 AC 105 ms
79,292 KB
testcase_16 AC 324 ms
108,200 KB
testcase_17 AC 77 ms
74,292 KB
testcase_18 WA -
testcase_19 AC 361 ms
112,924 KB
testcase_20 AC 96 ms
78,684 KB
testcase_21 AC 318 ms
107,704 KB
testcase_22 AC 418 ms
116,636 KB
testcase_23 AC 282 ms
101,000 KB
testcase_24 AC 210 ms
88,824 KB
testcase_25 AC 368 ms
114,972 KB
testcase_26 AC 311 ms
107,184 KB
testcase_27 AC 237 ms
91,180 KB
testcase_28 AC 205 ms
88,524 KB
testcase_29 WA -
testcase_30 AC 430 ms
115,648 KB
testcase_31 AC 427 ms
115,648 KB
testcase_32 WA -
testcase_33 AC 428 ms
115,520 KB
testcase_34 AC 427 ms
114,576 KB
testcase_35 AC 110 ms
107,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
L=list(map(int,input().split()))
R=list(map(int,input().split()))
D=list(map(int,input().split()))
for i in range(N-1):
  if D[i]!=0 and D[i+1]==0:
    print(0)
    exit()
DP=[[0]*9 for i in range(N+1)]
DP[0][0]=1
mod=10**9+7
X,Y=0,0
inv9=pow(9,mod-2,mod)
for i in range(N):
  if D[i]==0:
    DP[i+1][0]=1
    continue
  X=(pow(10,R[i]%(mod-1),mod)-1)*inv9%mod
  Y=(pow(10,L[i]%(mod-1),mod)-1)*inv9%mod
  for j in range(9):
    for k in range(9):
      DP[i+1][(j+k)%9]=(DP[i+1][(j+k)%9]+DP[i][j]*((0  if k else 1)+X-Y))%mod
  for j in range(9):
    if j!=D[i]%9:
      DP[i+1][j]=0
if set(D)=={0,9} or set(D)==set([9]):
  DP[N][0]=(DP[N][0]-1)%mod
print(sum(DP[N]))
0