結果

問題 No.885 アマリクエリ
ユーザー htensaihtensai
提出日時 2019-12-10 17:02:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,723 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 77,280 KB
実行使用メモリ 67,928 KB
最終ジャッジ日時 2024-06-24 01:52:10
合計ジャッジ時間 18,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long total = 0;
        PriorityQueue<Integer> queue = new PriorityQueue<Integer>(new Comparator<Integer>() {
            public int compare(Integer i1, Integer i2) {
                return i2.intValue() - i1.intValue();
            }
        });
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            total += x;
            queue.add(x);
        }
        int q = sc.nextInt();
        int min = Integer.MAX_VALUE;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int x = sc.nextInt();
            if (x < min) {
                min = x;
                while(queue.peek() >= x) {
                    int y = queue.poll();
                    total -= y / x * x;
                    queue.add(y % x);
                }
            }
            sb.append(total).append("\n");
        }
        System.out.print(sb);
    }
}
0