結果

問題 No.1043 直列大学
ユーザー tanon710tanon710
提出日時 2020-05-04 01:24:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 113,624 KB
最終ジャッジ日時 2024-06-02 03:15:53
合計ジャッジ時間 4,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,208 KB
testcase_01 AC 35 ms
54,420 KB
testcase_02 AC 43 ms
62,872 KB
testcase_03 AC 34 ms
53,412 KB
testcase_04 AC 33 ms
53,284 KB
testcase_05 AC 34 ms
53,448 KB
testcase_06 AC 34 ms
53,808 KB
testcase_07 AC 43 ms
62,344 KB
testcase_08 AC 41 ms
61,264 KB
testcase_09 AC 66 ms
66,544 KB
testcase_10 AC 82 ms
72,020 KB
testcase_11 AC 202 ms
86,912 KB
testcase_12 AC 312 ms
113,624 KB
testcase_13 AC 178 ms
87,720 KB
testcase_14 AC 203 ms
90,452 KB
testcase_15 AC 267 ms
101,716 KB
testcase_16 AC 183 ms
91,680 KB
testcase_17 AC 74 ms
63,020 KB
testcase_18 AC 101 ms
83,740 KB
testcase_19 AC 177 ms
87,648 KB
testcase_20 AC 74 ms
64,064 KB
testcase_21 AC 168 ms
89,172 KB
testcase_22 AC 166 ms
89,736 KB
testcase_23 AC 298 ms
108,268 KB
testcase_24 AC 107 ms
81,936 KB
testcase_25 AC 154 ms
84,984 KB
testcase_26 AC 209 ms
94,568 KB
testcase_27 AC 65 ms
65,700 KB
testcase_28 AC 162 ms
87,356 KB
testcase_29 AC 53 ms
65,100 KB
testcase_30 AC 159 ms
89,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=10**9+7
n,m=map(int,input().split())
arr1=list(map(int,input().split()))
arr2=list(map(int,input().split()))
a,b=map(int,input().split())
dp1=[0]*(1000*n+1)
dp1[0]=1
dp2=[0]*(1000*m+1)
dp2[0]=1
for i in range(n):
    for j in range(1000*n,arr1[i]-1,-1):
        dp1[j]+=dp1[j-arr1[i]]
for i in range(1,1000*n+1):
    dp1[i]+=dp1[i-1]
for i in range(m):
    for j in range(1000*m,arr2[i]-1,-1):
        dp2[j]+=dp2[j-arr2[i]]
ans=0
for i in range(1,1000*m+1):
    ans+=dp2[i]*(dp1[min(b*i,1000*n)]-dp1[min(a*i-1,1000*n)])
    ans%=mod
print(ans)
0