結果

問題 No.1043 直列大学
ユーザー titiatitia
提出日時 2020-05-01 22:39:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,201 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,820 KB
最終ジャッジ日時 2024-06-07 11:01:33
合計ジャッジ時間 6,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
18,560 KB
testcase_01 AC 160 ms
13,184 KB
testcase_02 AC 150 ms
13,184 KB
testcase_03 AC 152 ms
13,184 KB
testcase_04 AC 152 ms
13,184 KB
testcase_05 AC 143 ms
13,056 KB
testcase_06 AC 146 ms
13,312 KB
testcase_07 AC 170 ms
13,184 KB
testcase_08 AC 141 ms
13,056 KB
testcase_09 AC 281 ms
18,816 KB
testcase_10 AC 432 ms
19,652 KB
testcase_11 AC 582 ms
19,072 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import Counter
from itertools import accumulate

N,M=map(int,input().split())
V=list(map(int,input().split()))
R=list(map(int,input().split()))
A,B=map(int,input().split())
mod=1000000007

C=Counter()
C[0]=1
for v in V:
    NC=Counter()
    for c in C:
        NC[c]=(NC[c]+C[c])%mod
        NC[c+v]=(NC[c+v]+C[c])%mod
    C=NC

C2=Counter()
C2[0]=1
for r in R:
    NC2=Counter()
    for c2 in C2:
        NC2[c2]=(NC2[c2]+C2[c2])%mod
        NC2[c2+r]=(NC2[c2+r]+C2[c2])%mod
    C2=NC2

del(C[0])
del(C2[0])

COUNT0=[0]*(10**5+1)
COUNT1=[0]*(10**5+1)

for c in C:
    COUNT0[c]=C[c]
for c2 in C2:
    COUNT1[c2]=C2[c2]

S1=list(accumulate(COUNT1))

ANS=0
r=0
for v in range(1,10**5+1):
    while r*B<v and r<=10**5:
        r+=1

    #print(v,r,ANS)
    if 0<=r-1<=10**5:
        ANS+=COUNT0[v]*(S1[-1]-S1[r-1])
    elif r==10**5+1:
        ANS+=COUNT0[v]*(S1[-1]-S1[10**5])
#print(ANS)

r=0
for v in range(1,10**5+1):
    while r*A<=v and r>=0:
        r+=1
    #print(v,r)
    if r<=10**5:
        ANS-=COUNT0[v]*(S1[-1]-S1[r-1])
    elif r==10**5+1:
        ANS-=COUNT0[v]*(S1[-1]-S1[10**5])
        
    
    
print(ANS%mod)
        

    
0