結果

問題 No.885 アマリクエリ
ユーザー tentententen
提出日時 2021-11-19 11:28:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 886 ms / 2,000 ms
コード長 1,580 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 78,980 KB
実行使用メモリ 65,868 KB
最終ジャッジ日時 2024-06-09 15:14:37
合計ジャッジ時間 9,937 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 886 ms
65,820 KB
testcase_01 AC 710 ms
65,868 KB
testcase_02 AC 449 ms
64,560 KB
testcase_03 AC 399 ms
63,932 KB
testcase_04 AC 411 ms
63,556 KB
testcase_05 AC 278 ms
59,164 KB
testcase_06 AC 232 ms
56,720 KB
testcase_07 AC 228 ms
58,324 KB
testcase_08 AC 247 ms
55,856 KB
testcase_09 AC 656 ms
65,224 KB
testcase_10 AC 49 ms
50,168 KB
testcase_11 AC 52 ms
50,172 KB
testcase_12 AC 52 ms
50,152 KB
testcase_13 AC 101 ms
51,916 KB
testcase_14 AC 100 ms
51,988 KB
testcase_15 AC 89 ms
51,976 KB
testcase_16 AC 90 ms
51,492 KB
testcase_17 AC 83 ms
51,380 KB
testcase_18 AC 90 ms
51,476 KB
testcase_19 AC 77 ms
51,328 KB
testcase_20 AC 68 ms
51,332 KB
testcase_21 AC 79 ms
51,084 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();
            queue.add(-x);
            total += x;
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int x = sc.nextInt();
            long tmp = 0;
            while (queue.peek() + x <= 0) {
                int y = -queue.poll();
                total -= y;
                int mod = y % x;
                total += mod;
                queue.add(-mod);
            }
            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