結果

問題 No.1043 直列大学
ユーザー tentententen
提出日時 2020-12-03 11:26:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,487 bytes
コンパイル時間 2,562 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 57,924 KB
最終ジャッジ日時 2024-06-02 03:22:54
合計ジャッジ時間 7,552 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
55,900 KB
testcase_01 AC 111 ms
55,344 KB
testcase_02 AC 132 ms
56,132 KB
testcase_03 AC 122 ms
56,416 KB
testcase_04 AC 122 ms
56,044 KB
testcase_05 AC 121 ms
55,940 KB
testcase_06 AC 123 ms
56,036 KB
testcase_07 AC 131 ms
56,204 KB
testcase_08 AC 129 ms
56,044 KB
testcase_09 AC 157 ms
56,140 KB
testcase_10 AC 169 ms
56,452 KB
testcase_11 AC 176 ms
56,212 KB
testcase_12 AC 183 ms
56,080 KB
testcase_13 AC 165 ms
56,264 KB
testcase_14 AC 173 ms
56,268 KB
testcase_15 AC 176 ms
56,080 KB
testcase_16 AC 166 ms
56,092 KB
testcase_17 AC 159 ms
57,924 KB
testcase_18 AC 165 ms
56,532 KB
testcase_19 AC 168 ms
56,220 KB
testcase_20 AC 164 ms
56,168 KB
testcase_21 AC 164 ms
56,196 KB
testcase_22 AC 161 ms
55,892 KB
testcase_23 AC 180 ms
56,184 KB
testcase_24 AC 167 ms
56,244 KB
testcase_25 AC 167 ms
56,240 KB
testcase_26 AC 170 ms
56,096 KB
testcase_27 AC 153 ms
56,692 KB
testcase_28 AC 173 ms
56,180 KB
testcase_29 AC 156 ms
56,640 KB
testcase_30 AC 166 ms
56,300 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