結果

問題 No.1043 直列大学
ユーザー takakintakakin
提出日時 2020-05-28 22:55:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 124,876 KB
最終ジャッジ日時 2024-06-02 03:18:29
合計ジャッジ時間 4,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,800 KB
testcase_01 AC 34 ms
53,004 KB
testcase_02 AC 33 ms
53,944 KB
testcase_03 AC 32 ms
53,272 KB
testcase_04 AC 32 ms
53,212 KB
testcase_05 AC 32 ms
53,388 KB
testcase_06 AC 34 ms
52,436 KB
testcase_07 AC 32 ms
52,804 KB
testcase_08 AC 33 ms
52,780 KB
testcase_09 AC 48 ms
65,336 KB
testcase_10 AC 60 ms
68,996 KB
testcase_11 AC 128 ms
81,124 KB
testcase_12 AC 369 ms
124,876 KB
testcase_13 AC 158 ms
90,532 KB
testcase_14 AC 161 ms
87,224 KB
testcase_15 AC 198 ms
92,672 KB
testcase_16 AC 147 ms
85,948 KB
testcase_17 AC 73 ms
69,428 KB
testcase_18 AC 83 ms
78,328 KB
testcase_19 AC 141 ms
84,516 KB
testcase_20 AC 67 ms
67,484 KB
testcase_21 AC 131 ms
84,272 KB
testcase_22 AC 128 ms
84,548 KB
testcase_23 AC 211 ms
94,796 KB
testcase_24 AC 94 ms
82,768 KB
testcase_25 AC 134 ms
87,508 KB
testcase_26 AC 151 ms
89,064 KB
testcase_27 AC 59 ms
63,028 KB
testcase_28 AC 72 ms
75,036 KB
testcase_29 AC 45 ms
63,940 KB
testcase_30 AC 130 ms
85,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m=map(int,input().split())
V=[int(i) for i in input().split()]
R=[int(i) for i in input().split()]
a,b=map(int,input().split())
v,r=sum(V),sum(R)
VT=[1]+[0]*v
RT=[1]+[0]*r

for i in range(n):
  for j in range(v)[::-1]:
    if j+1>=V[i]:
      VT[j+1]+=VT[j+1-V[i]]
for i in range(m):
  for j in range(r)[::-1]:
    if j+1>=R[i]:
      RT[j+1]+=RT[j+1-R[i]]
VTT=[0]
for i in range(v+1):
  VTT.append(VTT[-1]+VT[i])

mod=10**9+7
ans=0
for i in range(r+1):
  ans+=(VTT[min(v+1,i*b+1)]-VTT[min(v+1,i*a)])*RT[i]
  if ans>mod:
    ans%=mod
print(ans-1)
  
0