結果
問題 | No.885 アマリクエリ |
ユーザー | tenten |
提出日時 | 2023-06-20 09:12:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,336 ms / 2,000 ms |
コード長 | 2,332 bytes |
コンパイル時間 | 2,909 ms |
コンパイル使用メモリ | 95,672 KB |
実行使用メモリ | 68,444 KB |
最終ジャッジ日時 | 2024-06-27 20:14:29 |
合計ジャッジ時間 | 11,527 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 304 ms
46,932 KB |
testcase_01 | AC | 1,279 ms
67,816 KB |
testcase_02 | AC | 592 ms
55,952 KB |
testcase_03 | AC | 315 ms
49,484 KB |
testcase_04 | AC | 323 ms
49,528 KB |
testcase_05 | AC | 314 ms
47,976 KB |
testcase_06 | AC | 244 ms
44,520 KB |
testcase_07 | AC | 340 ms
50,952 KB |
testcase_08 | AC | 244 ms
46,020 KB |
testcase_09 | AC | 1,336 ms
68,444 KB |
testcase_10 | AC | 50 ms
36,664 KB |
testcase_11 | AC | 51 ms
36,564 KB |
testcase_12 | AC | 53 ms
37,200 KB |
testcase_13 | AC | 126 ms
40,892 KB |
testcase_14 | AC | 124 ms
41,148 KB |
testcase_15 | AC | 120 ms
41,176 KB |
testcase_16 | AC | 89 ms
38,028 KB |
testcase_17 | AC | 89 ms
38,232 KB |
testcase_18 | AC | 107 ms
39,124 KB |
testcase_19 | AC | 77 ms
38,472 KB |
testcase_20 | AC | 80 ms
37,968 KB |
testcase_21 | AC | 98 ms
38,752 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); TreeMap<Integer, Integer> counts = new TreeMap<>(); long total = 0; for (int i = 0; i < n; i++) { int x = sc.nextInt(); total += x; counts.put(x, counts.getOrDefault(x, 0) + 1); } int q = sc.nextInt(); StringBuilder sb = new StringBuilder(); while (q-- > 0) { int x = sc.nextInt(); while (counts.size() > 0 && counts.lastKey() >= x) { int y = counts.lastKey(); int size = counts.get(y); counts.remove(y); total -= (long)y * size; y %= x; total += (long)y * size; if (y > 0) { counts.put(y, counts.getOrDefault(y, 0) + size); } } sb.append(total).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(); } }