結果

問題 No.885 アマリクエリ
ユーザー htensaihtensai
提出日時 2019-12-10 17:02:55
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,723 ms
67,928 KB
testcase_01 AC 1,425 ms
67,340 KB
testcase_02 AC 1,061 ms
66,712 KB
testcase_03 AC 1,085 ms
61,564 KB
testcase_04 AC 1,109 ms
61,588 KB
testcase_05 AC 798 ms
58,756 KB
testcase_06 AC 747 ms
54,792 KB
testcase_07 AC 634 ms
52,420 KB
testcase_08 AC 604 ms
50,588 KB
testcase_09 AC 1,362 ms
67,420 KB
testcase_10 AC 126 ms
41,588 KB
testcase_11 AC 132 ms
41,852 KB
testcase_12 AC 131 ms
41,556 KB
testcase_13 AC 219 ms
43,932 KB
testcase_14 AC 217 ms
44,124 KB
testcase_15 AC 214 ms
43,704 KB
testcase_16 AC 215 ms
43,784 KB
testcase_17 AC 218 ms
44,040 KB
testcase_18 AC 222 ms
43,736 KB
testcase_19 AC 197 ms
43,020 KB
testcase_20 AC 195 ms
42,596 KB
testcase_21 AC 209 ms
42,440 KB
権限があれば一括ダウンロードができます

ソースコード

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