結果

問題 No.1043 直列大学
ユーザー tanon710tanon710
提出日時 2020-05-04 01:19:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 113,368 KB
最終ジャッジ日時 2024-06-23 07:14:57
合計ジャッジ時間 4,883 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,056 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 47 ms
61,184 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 38 ms
53,248 KB
testcase_05 AC 38 ms
53,084 KB
testcase_06 AC 37 ms
52,864 KB
testcase_07 AC 46 ms
61,312 KB
testcase_08 AC 46 ms
61,056 KB
testcase_09 AC 73 ms
66,176 KB
testcase_10 WA -
testcase_11 AC 198 ms
86,720 KB
testcase_12 AC 334 ms
113,368 KB
testcase_13 RE -
testcase_14 AC 138 ms
84,804 KB
testcase_15 RE -
testcase_16 AC 186 ms
88,488 KB
testcase_17 AC 70 ms
63,488 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 307 ms
108,596 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 59 ms
64,964 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

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(n):
    for j in range(1000*n,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