結果

問題 No.1043 直列大学
ユーザー tentententen
提出日時 2020-12-03 11:26:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,487 bytes
コンパイル時間 5,843 ms
コンパイル使用メモリ 78,252 KB
実行使用メモリ 44,468 KB
最終ジャッジ日時 2024-12-22 20:13:25
合計ジャッジ時間 9,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
43,880 KB
testcase_01 AC 150 ms
43,852 KB
testcase_02 AC 160 ms
43,928 KB
testcase_03 AC 149 ms
43,956 KB
testcase_04 AC 147 ms
43,556 KB
testcase_05 AC 149 ms
43,948 KB
testcase_06 AC 149 ms
44,008 KB
testcase_07 AC 157 ms
43,784 KB
testcase_08 AC 160 ms
43,800 KB
testcase_09 AC 190 ms
43,724 KB
testcase_10 AC 204 ms
43,948 KB
testcase_11 AC 206 ms
44,284 KB
testcase_12 AC 219 ms
43,796 KB
testcase_13 AC 209 ms
44,144 KB
testcase_14 AC 208 ms
43,952 KB
testcase_15 AC 208 ms
43,928 KB
testcase_16 AC 205 ms
43,744 KB
testcase_17 AC 193 ms
43,852 KB
testcase_18 AC 202 ms
44,104 KB
testcase_19 AC 200 ms
43,976 KB
testcase_20 AC 190 ms
43,856 KB
testcase_21 AC 201 ms
44,060 KB
testcase_22 AC 204 ms
43,884 KB
testcase_23 AC 215 ms
44,148 KB
testcase_24 AC 199 ms
43,900 KB
testcase_25 AC 205 ms
43,812 KB
testcase_26 AC 210 ms
44,200 KB
testcase_27 AC 195 ms
43,960 KB
testcase_28 AC 216 ms
44,468 KB
testcase_29 AC 186 ms
43,920 KB
testcase_30 AC 201 ms
43,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MAX = 100 * 1000 + 1;
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        long[] volts = new long[MAX];
        volts[0] = 1;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            for (int j = 1000 * i; j >= 0; j--) {
                volts[j + x] += volts[j];
                volts[j + x] %= MOD;
            }
        }
        long[] sums = new long[MAX];
        for (int i = 1; i < MAX; i++) {
            sums[i] += sums[i - 1] + volts[i];
            sums[i] %= MOD;
        }
        long[] resists = new long[MAX];
        resists[0] = 1;
        for (int i = 0; i < m; i++) {
            int x = sc.nextInt();
            for (int j = 1000 * i; j >= 0; j--) {
                resists[j + x] += resists[j];
                resists[j + x] %= MOD;
            }
        }
        int a = sc.nextInt();
        int b = sc.nextInt();
        long ans = 0;
        for (int i = 1; i * a < MAX; i++) {
            int idx;
            if (Integer.MAX_VALUE / i <= b) {
                idx = Integer.MAX_VALUE;
            } else {
                idx = i * b;
            }
            ans += (sums[Math.min(MAX - 1, idx)] - sums[i * a - 1] + MOD) % MOD * resists[i] % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
0