結果

問題 No.1043 直列大学
ユーザー tcltktcltk
提出日時 2021-01-17 23:19:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,426 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 367,084 KB
最終ジャッジ日時 2024-05-07 12:39:15
合計ジャッジ時間 7,185 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
96,108 KB
testcase_01 AC 129 ms
88,828 KB
testcase_02 AC 123 ms
89,244 KB
testcase_03 AC 125 ms
88,820 KB
testcase_04 AC 121 ms
89,088 KB
testcase_05 AC 124 ms
89,196 KB
testcase_06 AC 121 ms
89,012 KB
testcase_07 AC 126 ms
89,084 KB
testcase_08 AC 124 ms
88,760 KB
testcase_09 AC 379 ms
91,832 KB
testcase_10 AC 860 ms
96,128 KB
testcase_11 AC 391 ms
154,836 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """5 5
# 1 2 3 4 5
# 1 2 3 4 5
# 1 5
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007

def main():
    N, M = map(int, input().split())
    V = list(map(int, input().split()))
    R = list(map(int, input().split()))
    A, B = map(int, input().split())

    SumV = sum(V)
    dpV = [[0 for _ in range(SumV+1)] for _ in range(N)]
    dpV[0][0] = 1
    dpV[0][V[0]] = 1
    for i in range(0, N-1):
        for v in range(SumV+1):
            if dpV[i][v] > 0:
                dpV[i+1][v] += dpV[i][v]
                dpV[i+1][v+V[i+1]] += dpV[i][v]

    SumR = sum(R)
    dpR = [[0 for _ in range(SumR+1)] for _ in range(M)]
    dpR[0][0] = 1
    dpR[0][R[0]] = 1
    for i in range(0, M-1):
        for r in range(SumR+1):
            if dpR[i][r] > 0:
                dpR[i+1][r] += dpR[i][r]
                dpR[i+1][r+R[i+1]] += dpR[i][r]

    n = 0
    for r in range(1, SumR+1):
        for v in range(max(r*A, 1), min(r*B, SumV)+1):
            n += dpR[M-1][r] * dpV[N-1][v]

    print(n % MOD)


if __name__ == '__main__':
    main()
0