結果

問題 No.885 アマリクエリ
ユーザー tentententen
提出日時 2023-04-10 18:19:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,155 ms / 2,000 ms
コード長 2,294 bytes
コンパイル時間 2,618 ms
コンパイル使用メモリ 84,436 KB
実行使用メモリ 78,856 KB
最終ジャッジ日時 2024-10-06 04:37:17
合計ジャッジ時間 10,447 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
56,800 KB
testcase_01 AC 1,081 ms
76,532 KB
testcase_02 AC 621 ms
67,836 KB
testcase_03 AC 313 ms
59,160 KB
testcase_04 AC 351 ms
61,512 KB
testcase_05 AC 298 ms
58,792 KB
testcase_06 AC 257 ms
57,596 KB
testcase_07 AC 318 ms
62,800 KB
testcase_08 AC 231 ms
56,576 KB
testcase_09 AC 1,155 ms
78,856 KB
testcase_10 AC 52 ms
50,192 KB
testcase_11 AC 52 ms
50,136 KB
testcase_12 AC 50 ms
50,312 KB
testcase_13 AC 122 ms
53,832 KB
testcase_14 AC 116 ms
54,008 KB
testcase_15 AC 134 ms
53,772 KB
testcase_16 AC 78 ms
51,172 KB
testcase_17 AC 79 ms
51,344 KB
testcase_18 AC 112 ms
51,728 KB
testcase_19 AC 84 ms
51,588 KB
testcase_20 AC 77 ms
51,244 KB
testcase_21 AC 96 ms
52,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        TreeMap<Integer, Long> counts = new TreeMap<>();
        long total = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            total += x;
            counts.put(x, counts.getOrDefault(x, 0L) + 1);
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int x = sc.nextInt();
            while (counts.lastKey() >= x) {
                int key = counts.lastKey();
                long value = counts.lastEntry().getValue();
                total -= key * value;
                counts.remove(key);
                key %= x;
                total += key * value;
                counts.put(key, counts.getOrDefault(key, 0L) + value);
            }
            sb.append(total).append("\n");
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0