結果

問題 No.1043 直列大学
ユーザー joybeeeejoybeeee
提出日時 2020-05-13 20:11:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,420 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 77,120 KB
実行使用メモリ 43,696 KB
最終ジャッジ日時 2024-09-14 15:37:56
合計ジャッジ時間 12,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
43,052 KB
testcase_01 AC 150 ms
42,020 KB
testcase_02 AC 191 ms
43,244 KB
testcase_03 AC 161 ms
42,728 KB
testcase_04 AC 161 ms
42,504 KB
testcase_05 AC 163 ms
43,028 KB
testcase_06 AC 160 ms
42,992 KB
testcase_07 AC 188 ms
43,324 KB
testcase_08 AC 188 ms
42,636 KB
testcase_09 AC 335 ms
43,592 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 422 ms
43,332 KB
testcase_13 WA -
testcase_14 AC 390 ms
43,340 KB
testcase_15 AC 410 ms
43,476 KB
testcase_16 AC 384 ms
43,508 KB
testcase_17 AC 325 ms
43,504 KB
testcase_18 AC 335 ms
43,304 KB
testcase_19 AC 382 ms
43,316 KB
testcase_20 AC 325 ms
43,544 KB
testcase_21 AC 366 ms
43,584 KB
testcase_22 WA -
testcase_23 AC 425 ms
42,876 KB
testcase_24 AC 350 ms
43,184 KB
testcase_25 AC 381 ms
43,344 KB
testcase_26 AC 393 ms
43,696 KB
testcase_27 AC 274 ms
43,372 KB
testcase_28 AC 373 ms
43,232 KB
testcase_29 AC 236 ms
43,132 KB
testcase_30 AC 336 ms
43,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {

  public static void main(String[] args) { 
      Scanner sc = new Scanner(System.in);
      int mod = 1000000007;
      int n = sc.nextInt();
      int m = sc.nextInt();
      int[] vArr = new int[n];
      int[] rArr = new int[m];

      for(int i = 0; i < n; i++)
        vArr[i] = sc.nextInt();
      for(int i = 0; i < m; i++)
        rArr[i] = sc.nextInt();

      long a = sc.nextInt();
      long b = sc.nextInt();
      
      long[] dpV = new long[101010]; dpV[0] = 1L;
      long[] dpR = new long[101010]; dpR[0] = 1L;

      for(int i = 0; i < n; i++)
        for(int j = dpV.length - 1; j > 0; j--) {
          if(j - vArr[i] < 0) continue;
          dpV[j] = (dpV[j] + dpV[j - vArr[i]]) % mod;
        }

      for(int i = 0; i < m; i++)
        for(int j = dpR.length - 1; j > 0; j--) {
          if(j - rArr[i] < 0) continue;
          dpR[j] = (dpR[j] + dpR[j - rArr[i]]) % mod;
        }

      for(int i = 1; i < dpV.length; i++)
        dpV[i] = (dpV[i] + dpV[i-1]) % mod;

      long cnt = 0L;
      for(int r = 1; r < dpR.length; r++) {
        if(dpR[r] == 0) continue;
        long leftV = a * r;
        long rightV = b * r;
        if(leftV > dpV.length - 1) continue;
        rightV = Math.min(rightV, dpV.length - 1);
        cnt = cnt + (long)dpR[r] * (dpV[(int)rightV] - dpV[(int)leftV - 1]) % mod;
      }
      System.out.println(cnt % mod);
  }
}
0