結果
問題 | No.885 アマリクエリ |
ユーザー | tenten |
提出日時 | 2022-08-29 14:36:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 858 ms / 2,000 ms |
コード長 | 1,582 bytes |
コンパイル時間 | 2,174 ms |
コンパイル使用メモリ | 79,056 KB |
実行使用メモリ | 58,100 KB |
最終ジャッジ日時 | 2024-04-24 05:18:38 |
合計ジャッジ時間 | 10,026 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 858 ms
55,244 KB |
testcase_01 | AC | 593 ms
55,216 KB |
testcase_02 | AC | 419 ms
55,932 KB |
testcase_03 | AC | 374 ms
52,564 KB |
testcase_04 | AC | 418 ms
53,844 KB |
testcase_05 | AC | 302 ms
49,504 KB |
testcase_06 | AC | 266 ms
47,052 KB |
testcase_07 | AC | 232 ms
47,856 KB |
testcase_08 | AC | 244 ms
45,516 KB |
testcase_09 | AC | 646 ms
58,100 KB |
testcase_10 | AC | 47 ms
37,108 KB |
testcase_11 | AC | 50 ms
37,308 KB |
testcase_12 | AC | 49 ms
37,436 KB |
testcase_13 | AC | 98 ms
39,460 KB |
testcase_14 | AC | 99 ms
39,168 KB |
testcase_15 | AC | 100 ms
38,976 KB |
testcase_16 | AC | 91 ms
38,688 KB |
testcase_17 | AC | 78 ms
38,172 KB |
testcase_18 | AC | 92 ms
38,236 KB |
testcase_19 | AC | 72 ms
37,664 KB |
testcase_20 | AC | 72 ms
37,772 KB |
testcase_21 | AC | 65 ms
38,256 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); PriorityQueue<Integer> queue = new PriorityQueue<>(); long total = 0; for (int i = 0; i < n; i++) { int x = sc.nextInt(); total += x; queue.add(-x); } int q = sc.nextInt(); StringBuilder sb = new StringBuilder(); while (q-- > 0) { int x = sc.nextInt(); while (-queue.peek() >= x) { int y = -queue.poll(); total -= y; y %= x; total += y; queue.add(-y); } sb.append(total).append("\n"); } System.out.print(sb); } } 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 String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }