結果

問題 No.885 アマリクエリ
ユーザー tentententen
提出日時 2020-08-31 14:38:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,740 ms / 2,000 ms
コード長 1,189 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 79,508 KB
実行使用メモリ 84,264 KB
最終ジャッジ日時 2024-11-15 23:07:20
合計ジャッジ時間 17,722 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 882 ms
69,212 KB
testcase_01 AC 1,629 ms
84,264 KB
testcase_02 AC 1,262 ms
75,888 KB
testcase_03 AC 955 ms
69,572 KB
testcase_04 AC 912 ms
69,252 KB
testcase_05 AC 812 ms
63,932 KB
testcase_06 AC 751 ms
64,668 KB
testcase_07 AC 635 ms
67,040 KB
testcase_08 AC 610 ms
60,832 KB
testcase_09 AC 1,740 ms
81,224 KB
testcase_10 AC 137 ms
53,988 KB
testcase_11 AC 134 ms
54,120 KB
testcase_12 AC 133 ms
53,992 KB
testcase_13 AC 242 ms
57,356 KB
testcase_14 AC 247 ms
57,988 KB
testcase_15 AC 247 ms
57,716 KB
testcase_16 AC 211 ms
56,760 KB
testcase_17 AC 217 ms
56,632 KB
testcase_18 AC 233 ms
57,132 KB
testcase_19 AC 198 ms
54,824 KB
testcase_20 AC 205 ms
54,260 KB
testcase_21 AC 227 ms
54,944 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