結果

問題 No.1043 直列大学
ユーザー ks2mks2m
提出日時 2020-05-01 22:19:11
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,565 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 76,420 KB
実行使用メモリ 52,604 KB
最終ジャッジ日時 2024-06-07 10:10:24
合計ジャッジ時間 12,249 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
42,628 KB
testcase_01 AC 94 ms
41,048 KB
testcase_02 AC 119 ms
44,920 KB
testcase_03 AC 96 ms
41,492 KB
testcase_04 AC 94 ms
41,128 KB
testcase_05 AC 82 ms
40,992 KB
testcase_06 AC 82 ms
40,976 KB
testcase_07 AC 114 ms
43,140 KB
testcase_08 AC 110 ms
43,184 KB
testcase_09 AC 258 ms
51,604 KB
testcase_10 AC 281 ms
52,236 KB
testcase_11 AC 359 ms
52,012 KB
testcase_12 RE -
testcase_13 AC 361 ms
51,924 KB
testcase_14 AC 357 ms
52,380 KB
testcase_15 AC 385 ms
52,200 KB
testcase_16 AC 348 ms
52,280 KB
testcase_17 AC 289 ms
51,952 KB
testcase_18 AC 296 ms
52,372 KB
testcase_19 AC 344 ms
52,244 KB
testcase_20 AC 297 ms
52,128 KB
testcase_21 AC 335 ms
52,396 KB
testcase_22 AC 342 ms
52,176 KB
testcase_23 AC 393 ms
51,992 KB
testcase_24 AC 305 ms
52,024 KB
testcase_25 AC 346 ms
52,376 KB
testcase_26 AC 366 ms
52,092 KB
testcase_27 AC 246 ms
51,960 KB
testcase_28 AC 361 ms
52,480 KB
testcase_29 AC 194 ms
51,636 KB
testcase_30 AC 298 ms
52,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);

		sa = br.readLine().split(" ");
		int[] v = new int[n];
		for (int i = 0; i < n; i++) {
			v[i] = Integer.parseInt(sa[i]);
		}

		sa = br.readLine().split(" ");
		int[] r = new int[m];
		for (int i = 0; i < m; i++) {
			r[i] = Integer.parseInt(sa[i]);
		}

		sa = br.readLine().split(" ");
		int a = Integer.parseInt(sa[0]);
		int b = Integer.parseInt(sa[1]);
		br.close();

		int mod = 1000000007;
		int mx = 100000;
		long[] dpv = dp(v, n);
		for (int i = 1; i <= mx; i++) {
			dpv[i] += dpv[i - 1];
			dpv[i] %= mod;
		}
		long[] dpr = dp(r, m);

		long ans = 0;
		for (int i = 1; i <= mx; i++) {
			int min = i * a;
			if (min > mx) {
				break;
			}
			int max = Math.min(i * b, mx);
			long cv = dpv[max] - dpv[min - 1] + mod;
			ans += cv * dpr[i];
			ans %= mod;
		}
		System.out.println(ans);
	}

	static long[] dp(int[] v, int n) {
		int mod = 1000000007;
		int mx = 100000;
		long[] dp = new long[mx + 1];
		dp[0] = 1;
		for (int i = 0; i < n; i++) {
			long[] work = new long[mx + 1];
			for (int j = mx - v[i] + 1; j <= mx; j++) {
				work[j] = dp[j];
			}
			for (int j = mx - v[i]; j >= 0; j--) {
				work[j + v[i]] += dp[j];
				work[j + v[i]] %= mod;
				work[j] = dp[j];
			}
			dp = work;
		}
		return dp;
	}
}
0