結果

問題 No.885 アマリクエリ
ユーザー tentententen
提出日時 2020-08-31 14:38:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,550 ms / 2,000 ms
コード長 1,189 bytes
コンパイル時間 2,933 ms
コンパイル使用メモリ 79,292 KB
実行使用メモリ 82,840 KB
最終ジャッジ日時 2024-04-27 18:31:54
合計ジャッジ時間 15,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 760 ms
69,252 KB
testcase_01 AC 1,439 ms
81,028 KB
testcase_02 AC 1,024 ms
77,308 KB
testcase_03 AC 806 ms
69,076 KB
testcase_04 AC 770 ms
69,380 KB
testcase_05 AC 692 ms
64,596 KB
testcase_06 AC 586 ms
64,220 KB
testcase_07 AC 566 ms
66,548 KB
testcase_08 AC 545 ms
60,492 KB
testcase_09 AC 1,550 ms
82,840 KB
testcase_10 AC 110 ms
53,932 KB
testcase_11 AC 98 ms
52,316 KB
testcase_12 AC 102 ms
52,704 KB
testcase_13 AC 212 ms
57,980 KB
testcase_14 AC 201 ms
57,556 KB
testcase_15 AC 209 ms
57,528 KB
testcase_16 AC 188 ms
56,492 KB
testcase_17 AC 181 ms
56,496 KB
testcase_18 AC 199 ms
57,104 KB
testcase_19 AC 174 ms
54,904 KB
testcase_20 AC 168 ms
54,504 KB
testcase_21 AC 180 ms
54,964 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 sum = 0;
    	TreeMap<Integer, Integer> remain = new TreeMap<>();
    	for (int i = 0; i < n; i++) {
    	    int x = - sc.nextInt();
    	    if (remain.containsKey(x)) {
    	        remain.put(x, remain.get(x) + 1);
    	    } else {
    	        remain.put(x, 1);
    	    }
    	    sum -= x;
    	}
    	int q = sc.nextInt();
    	StringBuilder sb = new StringBuilder();
    	for (int i = 0; i < q; i++) {
    	    int y = sc.nextInt();
    	    while (- remain.firstKey() >= y) {
    	        Map.Entry<Integer, Integer> entry = remain.pollFirstEntry();
    	        int x = - entry.getKey();
    	        sum -= (long)x  * entry.getValue();
    	        int mod = x % y;
    	        if (remain.containsKey(-mod)) {
    	            remain.put(-mod, remain.get(-mod) + entry.getValue());
    	        } else {
    	            remain.put(-mod, entry.getValue());
    	        }
    	        sum += (long)mod * entry.getValue();
    	    }
    	    sb.append(sum).append("\n");
    	}
    	System.out.print(sb);
    }
}
0