結果

問題 No.885 アマリクエリ
ユーザー ks2mks2m
提出日時 2019-09-13 22:25:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 975 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 87,924 KB
実行使用メモリ 75,212 KB
最終ジャッジ日時 2024-07-04 09:58:43
合計ジャッジ時間 11,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 975 ms
66,552 KB
testcase_01 AC 800 ms
74,864 KB
testcase_02 AC 621 ms
71,168 KB
testcase_03 AC 548 ms
70,444 KB
testcase_04 AC 546 ms
71,884 KB
testcase_05 AC 380 ms
67,156 KB
testcase_06 AC 335 ms
66,652 KB
testcase_07 AC 254 ms
63,124 KB
testcase_08 AC 308 ms
63,236 KB
testcase_09 AC 788 ms
75,212 KB
testcase_10 AC 61 ms
50,812 KB
testcase_11 AC 59 ms
50,724 KB
testcase_12 AC 60 ms
50,652 KB
testcase_13 AC 100 ms
52,288 KB
testcase_14 AC 104 ms
52,024 KB
testcase_15 AC 113 ms
52,100 KB
testcase_16 AC 94 ms
51,744 KB
testcase_17 AC 102 ms
51,996 KB
testcase_18 AC 104 ms
51,832 KB
testcase_19 AC 86 ms
51,448 KB
testcase_20 AC 81 ms
51,704 KB
testcase_21 AC 81 ms
51,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.PriorityQueue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		PriorityQueue<Integer> que = new PriorityQueue<>((o1, o2) -> o2 - o1);
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
			que.add(a[i]);
		}
		int q = Integer.parseInt(br.readLine());
		sa = br.readLine().split(" ");
		int[] x = new int[q];
		for (int i = 0; i < q; i++) {
			x[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long sum = 0;
		for (int i = 0; i < n; i++) {
			sum += a[i];
		}

		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < q; i++) {
			while (que.peek() >= x[i]) {
				int cur = que.poll();
				int next = cur % x[i];
				que.add(next);
				sum -= cur - next;
			}
			pw.println(sum);
		}
		pw.flush();
	}
}
0