結果
問題 | No.2359 A in S ? |
ユーザー | tenten |
提出日時 | 2023-06-26 21:35:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,327 ms / 2,000 ms |
コード長 | 3,255 bytes |
コンパイル時間 | 2,883 ms |
コンパイル使用メモリ | 97,396 KB |
実行使用メモリ | 225,108 KB |
最終ジャッジ日時 | 2024-07-03 16:36:44 |
合計ジャッジ時間 | 23,532 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 244 ms
177,188 KB |
testcase_01 | AC | 257 ms
178,044 KB |
testcase_02 | AC | 364 ms
182,948 KB |
testcase_03 | AC | 252 ms
180,120 KB |
testcase_04 | AC | 1,217 ms
212,764 KB |
testcase_05 | AC | 1,193 ms
213,104 KB |
testcase_06 | AC | 1,164 ms
213,120 KB |
testcase_07 | AC | 678 ms
213,184 KB |
testcase_08 | AC | 825 ms
212,996 KB |
testcase_09 | AC | 742 ms
213,240 KB |
testcase_10 | AC | 1,267 ms
225,020 KB |
testcase_11 | AC | 1,327 ms
225,108 KB |
testcase_12 | AC | 1,207 ms
213,072 KB |
testcase_13 | AC | 1,207 ms
212,988 KB |
testcase_14 | AC | 1,218 ms
213,208 KB |
testcase_15 | AC | 751 ms
212,964 KB |
testcase_16 | AC | 1,220 ms
213,416 KB |
testcase_17 | AC | 1,218 ms
213,056 KB |
testcase_18 | AC | 1,221 ms
213,196 KB |
testcase_19 | AC | 1,165 ms
213,184 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static final int LIMIT = 300; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); int[] counts = new int[100001]; int[][] imos = new int[LIMIT][100001]; for (int i = 0; i < n; i++) { int left = sc.nextInt(); int right = sc.nextInt(); int div = sc.nextInt(); int mod = sc.nextInt(); if (div >= LIMIT) { if (left % div <= mod) { left += mod - left % div; } else { left += div - left % div + mod; } for (int j = left; j <= right; j += div) { counts[j]++; } } else { if (left % div <= mod) { left += mod - left % div; } else { left += div - left % div + mod; } if (left <= 100000) { imos[div][left]++; } if (right % div < mod) { right += mod - right % div; } else { right += div - right % div + mod; } if (right <= 100000) { imos[div][right]--; } } } for (int i = 1; i < LIMIT; i++) { for (int j = 1; j <= 100000; j++) { if (j - i >= 0) { imos[i][j] += imos[i][j - i]; } } } StringBuilder sb = new StringBuilder(); for (int i = 0; i < m; i++) { int x = sc.nextInt(); int ans = counts[x]; for (int j = 1; j < LIMIT; j++) { ans += imos[j][x]; } sb.append(ans).append("\n"); } System.out.print(sb); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }