結果

問題 No.1043 直列大学
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-08 22:55:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 777 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 92,232 KB
最終ジャッジ日時 2024-10-05 00:02:36
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
76,496 KB
testcase_01 AC 57 ms
70,356 KB
testcase_02 AC 178 ms
76,904 KB
testcase_03 AC 61 ms
70,580 KB
testcase_04 AC 57 ms
70,628 KB
testcase_05 AC 134 ms
76,188 KB
testcase_06 AC 134 ms
76,404 KB
testcase_07 AC 62 ms
72,264 KB
testcase_08 AC 218 ms
76,884 KB
testcase_09 AC 245 ms
84,196 KB
testcase_10 AC 256 ms
85,396 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 104 ms
89,688 KB
testcase_15 AC 108 ms
91,728 KB
testcase_16 AC 104 ms
89,624 KB
testcase_17 AC 106 ms
85,688 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 161 ms
82,608 KB
testcase_28 AC 192 ms
88,840 KB
testcase_29 AC 152 ms
80,092 KB
testcase_30 AC 169 ms
85,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
*v,=map(int,input().split())
*r,=map(int,input().split())
a,b=map(int,input().split())
mod=10**9+7
dpv=[[0]*(10*1000+1) for _ in range(n+1)]
dpv[0][0]=1
dpr=[[0]*(10*1000+1) for _ in range(m+1)]
dpr[0][0]=1

for i in range(1,n+1):
    dpv[i][0]=1
    for j in range(10*1000+1):
        dpv[i][j]=dpv[i-1][j]
        if 0<=j-v[i-1]<=10*1000:
            dpv[i][j]+=dpv[i-1][j-v[i-1]]
        dpv[i][j]%=mod

for i in range(1,m+1):
    dpr[i][0]=1
    for j in range(10*1000+1):
        dpr[i][j]=dpr[i-1][j]
        if 0<=j-r[i-1]<=10*1000:
            dpr[i][j]+=dpr[i-1][j-r[i-1]]
        dpr[i][j]%=mod

dpv=dpv[-1]
dpr=dpr[-1]

ans=0
for R in range(1, 10*1000+1):
    ans+=(dpr[R]*sum(dpv[a*R:min(b*R+1,10*1000+1)]))%mod
    ans%=mod

print(ans)
0