結果

問題 No.1043 直列大学
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-06 20:31:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 244,608 KB
最終ジャッジ日時 2024-12-22 20:13:08
合計ジャッジ時間 8,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
82,688 KB
testcase_01 AC 62 ms
73,600 KB
testcase_02 AC 87 ms
85,888 KB
testcase_03 AC 62 ms
73,728 KB
testcase_04 AC 61 ms
73,472 KB
testcase_05 AC 66 ms
76,544 KB
testcase_06 AC 67 ms
76,416 KB
testcase_07 AC 76 ms
79,488 KB
testcase_08 AC 76 ms
81,024 KB
testcase_09 AC 230 ms
161,280 KB
testcase_10 AC 262 ms
179,712 KB
testcase_11 AC 337 ms
222,592 KB
testcase_12 AC 392 ms
244,608 KB
testcase_13 AC 321 ms
209,408 KB
testcase_14 AC 333 ms
218,496 KB
testcase_15 AC 358 ms
231,680 KB
testcase_16 AC 330 ms
215,168 KB
testcase_17 AC 256 ms
178,560 KB
testcase_18 AC 278 ms
186,624 KB
testcase_19 AC 314 ms
209,408 KB
testcase_20 AC 259 ms
178,560 KB
testcase_21 AC 296 ms
199,424 KB
testcase_22 AC 312 ms
206,848 KB
testcase_23 AC 366 ms
237,184 KB
testcase_24 AC 278 ms
189,056 KB
testcase_25 AC 321 ms
209,792 KB
testcase_26 AC 341 ms
220,032 KB
testcase_27 AC 205 ms
148,224 KB
testcase_28 AC 323 ms
210,432 KB
testcase_29 AC 157 ms
121,856 KB
testcase_30 AC 261 ms
177,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline

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

M = 10**5+50
SV = [0]*M
SR = [0]*M

SV[0] = 1
for v in V:
    temp = [0]*M
    for i in range(M):
        temp[i] = SV[i]
    for i in range(M):
        if i+v < M:
            temp[i+v] += SV[i]
            temp[i+v] %= mod
    SV = temp
SR[0] = 1
for r in R:
    temp = [0]*M
    for i in range(M):
        temp[i] = SR[i]
    for i in range(M):
        if i+r < M:
            temp[i+r] += SR[i]
            temp[i+r] %= mod
    SR = temp

from itertools import accumulate
cum = SV
cum = list(accumulate(cum))
ans = 0
for i in range(1, M):
    c = SR[i]
    l = a*i
    r = b*i
    ans += (cum[min(r, M-1)]-cum[min(l-1, M-1)])*c
    ans %= mod
print(ans)
0