結果

問題 No.1043 直列大学
ユーザー tanon710tanon710
提出日時 2020-05-04 01:24:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 369 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 113,676 KB
最終ジャッジ日時 2024-12-22 20:05:00
合計ジャッジ時間 6,032 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
60,800 KB
testcase_01 AC 42 ms
52,864 KB
testcase_02 AC 53 ms
61,056 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 44 ms
52,992 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 57 ms
61,312 KB
testcase_08 AC 56 ms
61,440 KB
testcase_09 AC 84 ms
65,664 KB
testcase_10 AC 103 ms
71,040 KB
testcase_11 AC 244 ms
86,852 KB
testcase_12 AC 369 ms
113,676 KB
testcase_13 AC 221 ms
87,640 KB
testcase_14 AC 240 ms
90,428 KB
testcase_15 AC 325 ms
101,792 KB
testcase_16 AC 215 ms
91,548 KB
testcase_17 AC 96 ms
63,104 KB
testcase_18 AC 131 ms
83,712 KB
testcase_19 AC 223 ms
87,312 KB
testcase_20 AC 90 ms
62,720 KB
testcase_21 AC 210 ms
88,996 KB
testcase_22 AC 206 ms
89,668 KB
testcase_23 AC 358 ms
108,212 KB
testcase_24 AC 138 ms
81,408 KB
testcase_25 AC 188 ms
84,908 KB
testcase_26 AC 256 ms
94,584 KB
testcase_27 AC 79 ms
65,024 KB
testcase_28 AC 195 ms
87,172 KB
testcase_29 AC 69 ms
64,768 KB
testcase_30 AC 194 ms
89,628 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