結果

問題 No.1086 桁和の桁和2
ユーザー googol_S0googol_S0
提出日時 2020-06-19 21:59:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 615 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 116,264 KB
最終ジャッジ日時 2024-07-03 14:29:41
合計ジャッジ時間 8,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 104 ms
107,472 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 35 ms
52,328 KB
testcase_08 WA -
testcase_09 AC 35 ms
52,608 KB
testcase_10 AC 79 ms
92,544 KB
testcase_11 AC 46 ms
71,424 KB
testcase_12 AC 38 ms
60,288 KB
testcase_13 AC 89 ms
96,292 KB
testcase_14 AC 70 ms
89,856 KB
testcase_15 AC 99 ms
79,312 KB
testcase_16 AC 315 ms
108,168 KB
testcase_17 AC 75 ms
73,984 KB
testcase_18 WA -
testcase_19 AC 337 ms
112,920 KB
testcase_20 AC 91 ms
78,592 KB
testcase_21 AC 299 ms
107,768 KB
testcase_22 AC 387 ms
116,264 KB
testcase_23 AC 264 ms
100,800 KB
testcase_24 AC 198 ms
88,924 KB
testcase_25 AC 338 ms
115,172 KB
testcase_26 AC 292 ms
106,980 KB
testcase_27 AC 223 ms
91,248 KB
testcase_28 AC 197 ms
88,320 KB
testcase_29 WA -
testcase_30 AC 396 ms
115,344 KB
testcase_31 AC 409 ms
115,532 KB
testcase_32 WA -
testcase_33 AC 404 ms
115,456 KB
testcase_34 AC 399 ms
114,636 KB
testcase_35 AC 105 ms
107,084 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
print(sum(DP[N]))
0