結果

問題 No.1043 直列大学
ユーザー komkompikomkompi
提出日時 2020-05-02 00:23:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 101,108 KB
最終ジャッジ日時 2024-06-02 03:09:57
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
62,720 KB
testcase_01 AC 45 ms
61,824 KB
testcase_02 AC 50 ms
62,848 KB
testcase_03 AC 46 ms
61,824 KB
testcase_04 AC 46 ms
62,336 KB
testcase_05 AC 45 ms
62,080 KB
testcase_06 AC 46 ms
61,696 KB
testcase_07 AC 49 ms
62,848 KB
testcase_08 AC 53 ms
62,848 KB
testcase_09 AC 81 ms
66,816 KB
testcase_10 AC 101 ms
77,404 KB
testcase_11 AC 178 ms
81,024 KB
testcase_12 AC 304 ms
101,108 KB
testcase_13 AC 202 ms
89,556 KB
testcase_14 AC 216 ms
91,348 KB
testcase_15 AC 260 ms
90,432 KB
testcase_16 AC 188 ms
84,876 KB
testcase_17 AC 102 ms
70,400 KB
testcase_18 AC 107 ms
73,728 KB
testcase_19 AC 193 ms
89,388 KB
testcase_20 AC 101 ms
69,248 KB
testcase_21 AC 172 ms
82,648 KB
testcase_22 AC 176 ms
84,988 KB
testcase_23 AC 279 ms
96,516 KB
testcase_24 AC 115 ms
74,496 KB
testcase_25 AC 166 ms
81,812 KB
testcase_26 AC 215 ms
91,736 KB
testcase_27 AC 79 ms
64,512 KB
testcase_28 AC 135 ms
72,576 KB
testcase_29 AC 63 ms
64,128 KB
testcase_30 AC 150 ms
83,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())

V=list(map(int,input().split()))
R=list(map(int,input().split()))

A,B=map(int,input().split())
    
dp_V=[0]*(10**5+1)
dp_V[0]=1

for v in V:
    for i in range(len(dp_V))[::-1]:
            if dp_V[i]!=0:
                dp_V[i+v]+=dp_V[i]

dp_R=[0]*(10**5+1)
dp_R[0]=1

for r in R:
    for i in range(len(dp_R))[::-1]:
            if dp_R[i]!=0:
                dp_R[i+r]+=dp_R[i]

col_R=[0]*(10**5+1)
col_R[0]=0
for i in range(1,len(dp_R)):
    col_R[i]=col_R[i-1]+dp_R[i]
#print(dp_V)
#print(col_R)

ans=0
for i in range(1,len(dp_V)):
    low=-(-i//B)
    high=i//A
    ans+=(col_R[high]-col_R[low-1])*dp_V[i]
print(ans%(10**9+7))
0