結果

問題 No.885 アマリクエリ
ユーザー tentententen
提出日時 2021-12-06 16:16:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 841 ms / 2,000 ms
コード長 1,537 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 78,596 KB
実行使用メモリ 55,728 KB
最終ジャッジ日時 2024-07-07 09:21:11
合計ジャッジ時間 9,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 841 ms
55,728 KB
testcase_01 AC 577 ms
55,276 KB
testcase_02 AC 432 ms
54,832 KB
testcase_03 AC 369 ms
52,484 KB
testcase_04 AC 352 ms
52,360 KB
testcase_05 AC 293 ms
48,768 KB
testcase_06 AC 234 ms
46,308 KB
testcase_07 AC 226 ms
47,512 KB
testcase_08 AC 247 ms
45,232 KB
testcase_09 AC 650 ms
55,356 KB
testcase_10 AC 46 ms
37,204 KB
testcase_11 AC 45 ms
36,812 KB
testcase_12 AC 43 ms
37,116 KB
testcase_13 AC 94 ms
38,904 KB
testcase_14 AC 82 ms
38,792 KB
testcase_15 AC 92 ms
38,800 KB
testcase_16 AC 75 ms
38,088 KB
testcase_17 AC 82 ms
38,292 KB
testcase_18 AC 89 ms
38,256 KB
testcase_19 AC 67 ms
37,396 KB
testcase_20 AC 77 ms
37,800 KB
testcase_21 AC 73 ms
38,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
        for (int i = 0; i < q; i++) {
            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("");
    
    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 {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0