結果
問題 | No.1043 直列大学 |
ユーザー | tenten |
提出日時 | 2020-12-03 09:24:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,132 bytes |
コンパイル時間 | 5,274 ms |
コンパイル使用メモリ | 76,624 KB |
実行使用メモリ | 58,180 KB |
最終ジャッジ日時 | 2024-09-13 17:08:27 |
合計ジャッジ時間 | 10,837 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
56,076 KB |
testcase_01 | AC | 138 ms
56,156 KB |
testcase_02 | AC | 149 ms
56,084 KB |
testcase_03 | AC | 125 ms
54,960 KB |
testcase_04 | AC | 140 ms
56,068 KB |
testcase_05 | AC | 140 ms
56,276 KB |
testcase_06 | AC | 141 ms
55,928 KB |
testcase_07 | AC | 145 ms
56,376 KB |
testcase_08 | AC | 145 ms
55,956 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 158 ms
42,696 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | RE | - |
ソースコード
import java.util.*; public class Main { static final int MAX = 100 * 1000 + 1; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int m = sc.nextInt(); int[] volts = new int[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]; } } int[] sums = new int[MAX]; for (int i = 1; i < MAX; i++) { sums[i] += sums[i - 1] + volts[i]; } int[] resists = new int[MAX]; resists[0] = 1; for (int i = 0; i < n; i++) { int x = sc.nextInt(); for (int j = 1000 * i; j >= 0; j--) { resists[j + x] += resists[j]; } } 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]) * (long)resists[i]; } System.out.println(ans); } }