結果

問題 No.1043 直列大学
ユーザー tentententen
提出日時 2020-12-03 11:18:38
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,317 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 56,240 KB
最終ジャッジ日時 2024-09-13 19:17:25
合計ジャッジ時間 8,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
43,832 KB
testcase_01 AC 144 ms
43,844 KB
testcase_02 AC 154 ms
43,852 KB
testcase_03 AC 145 ms
43,720 KB
testcase_04 AC 145 ms
43,584 KB
testcase_05 AC 147 ms
43,724 KB
testcase_06 AC 147 ms
43,500 KB
testcase_07 AC 153 ms
43,860 KB
testcase_08 AC 153 ms
43,788 KB
testcase_09 AC 183 ms
43,712 KB
testcase_10 AC 192 ms
44,344 KB
testcase_11 AC 198 ms
44,032 KB
testcase_12 RE -
testcase_13 AC 193 ms
44,052 KB
testcase_14 AC 197 ms
44,044 KB
testcase_15 AC 200 ms
43,920 KB
testcase_16 AC 197 ms
43,984 KB
testcase_17 AC 177 ms
43,708 KB
testcase_18 AC 189 ms
44,212 KB
testcase_19 AC 194 ms
44,004 KB
testcase_20 AC 187 ms
44,336 KB
testcase_21 AC 186 ms
44,096 KB
testcase_22 AC 189 ms
43,956 KB
testcase_23 AC 207 ms
44,164 KB
testcase_24 AC 188 ms
44,056 KB
testcase_25 AC 195 ms
44,468 KB
testcase_26 AC 198 ms
44,380 KB
testcase_27 AC 183 ms
44,512 KB
testcase_28 AC 204 ms
44,008 KB
testcase_29 AC 178 ms
44,152 KB
testcase_30 AC 190 ms
43,888 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++) {
            ans += (sums[Math.min(MAX - 1, i * b)] - sums[i * a - 1] + MOD) % MOD * resists[i] % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
}
0