結果

問題 No.1043 直列大学
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-05-01 22:48:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 708 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 36,480 KB
最終ジャッジ日時 2024-12-25 13:45:01
合計ジャッジ時間 40,393 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,568 KB
testcase_01 AC 26 ms
26,752 KB
testcase_02 AC 26 ms
17,444 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 125 ms
11,136 KB
testcase_10 AC 286 ms
11,520 KB
testcase_11 AC 1,939 ms
13,440 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,302 ms
15,488 KB
testcase_18 AC 1,191 ms
15,232 KB
testcase_19 TLE -
testcase_20 AC 1,160 ms
14,720 KB
testcase_21 AC 1,935 ms
17,152 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1,475 ms
15,872 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 854 ms
12,672 KB
testcase_28 AC 1,237 ms
16,256 KB
testcase_29 AC 114 ms
11,264 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
N, M = map(int, input().split())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
A, B = map(int, input().split())
sx = sum(X)+1
sy = sum(Y)+1
V = [0]*sx
V[0] = 1
for i in range(N):
    x = X[i]
    for j in range(sx-1, -1, -1):
        if j-x>=0:
            V[j] += V[j-x]
R = [0]*sy
R[0] = 1
for i in range(M):
    x = Y[i]
    for j in range(sy-1, -1, -1):
        if j-x>=0:
            R[j] += R[j-x]

SV = [0]*(sx+1)
for i in range(1, sx+1):
    SV[i] = SV[i-1] + V[i-1]

mod = 1000000007
rr = 0
for i in range(1, sy):
    r = R[i]
    a, b = min(i*A, sx), min(i*B+1, sx)
    rr = (rr+(SV[b]-SV[a])*r) % mod
#print(SV)
#print(V, R)
print(rr)
0