結果

問題 No.1043 直列大学
ユーザー vwxyzvwxyz
提出日時 2024-08-15 09:32:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 2,038 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-08-15 09:32:24
合計ジャッジ時間 3,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,688 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
52,608 KB
testcase_09 AC 57 ms
63,104 KB
testcase_10 AC 58 ms
64,128 KB
testcase_11 AC 76 ms
62,336 KB
testcase_12 AC 131 ms
69,248 KB
testcase_13 AC 86 ms
62,976 KB
testcase_14 AC 82 ms
63,360 KB
testcase_15 AC 89 ms
63,232 KB
testcase_16 AC 80 ms
63,104 KB
testcase_17 AC 66 ms
62,976 KB
testcase_18 AC 77 ms
67,584 KB
testcase_19 AC 78 ms
63,360 KB
testcase_20 AC 64 ms
62,464 KB
testcase_21 AC 81 ms
63,104 KB
testcase_22 AC 81 ms
65,408 KB
testcase_23 AC 88 ms
62,720 KB
testcase_24 AC 74 ms
64,768 KB
testcase_25 AC 83 ms
65,408 KB
testcase_26 AC 79 ms
62,848 KB
testcase_27 AC 64 ms
61,824 KB
testcase_28 AC 63 ms
60,928 KB
testcase_29 AC 46 ms
60,032 KB
testcase_30 AC 70 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Cumsum:
    def __init__(self,lst,mod=0):
        self.N=len(lst)
        self.mod=mod
        self.cumsum=[0]*(self.N+1)
        self.cumsum[0]=0
        for i in range(1,self.N+1):
            self.cumsum[i]=self.cumsum[i-1]+lst[i-1]
            if self.mod:
                self.cumsum[i]%=self.mod

    def __getitem__(self,i):
        if type(i)==int:
            if 0<=i<self.N:
                a,b=i,i+1
            elif -self.N<=i<0:
                a,b=i+self.N,i+self.N+1
            else:
                raise IndexError('list index out of range')
        else:
            a,b=i.start,i.stop
            if a==None or a<-self.N:
                a=0
            elif self.N<=a:
                a=self.N
            elif a<0:
                a+=self.N
            if b==None or self.N<=b:
                b=self.N
            elif b<-self.N:
                b=0
            elif b<0:
                b+=self.N
        s=self.cumsum[b]-self.cumsum[a]
        if self.mod:
            s%=self.mod
        return s

    def __setitem__(self,i,x):
        if -self.N<=i<0:
            i+=self.N
        elif not 0<=i<self.N:
            raise IndexError('list index out of range')
        self.cumsum[i+1]=self.cumsum[i]+x
        if self.mod:
            self.cumsum[i+1]%=self.mod

    def __len__(self):
        return self.N

    def __str__(self):
        lst=[self.cumsum[i+1]-self.cumsum[i] for i in range(self.N)]
        if self.mod:
            for i in range(self.N):
                lst[i]%=self.mod
        return "["+", ".join(map(str,lst))+"]"

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=10**9+7
def make_cnt(VR):
    S=sum(VR)
    dp=[0]*(S+1)
    dp[0]=1
    for vr in VR:
        for s in range(S,vr-1,-1):
            dp[s]+=dp[s-vr]
            dp[s]%=mod
    return dp,S
cntV,SV=make_cnt(V)
cntR,SR=make_cnt(R)
cntV=Cumsum(cntV)
ans=0
for r in range(1,SR+1):
    ans+=cntV[r*A:r*B+1]*cntR[r]%mod
    ans%=mod
print(ans)
0