結果

問題 No.885 アマリクエリ
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-09 22:22:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 166,324 KB
最終ジャッジ日時 2024-07-17 03:23:50
合計ジャッジ時間 5,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
100,020 KB
testcase_01 AC 596 ms
149,016 KB
testcase_02 AC 205 ms
115,468 KB
testcase_03 AC 107 ms
95,916 KB
testcase_04 AC 106 ms
95,464 KB
testcase_05 AC 99 ms
100,840 KB
testcase_06 AC 91 ms
100,856 KB
testcase_07 AC 89 ms
109,796 KB
testcase_08 AC 81 ms
91,072 KB
testcase_09 AC 671 ms
166,324 KB
testcase_10 AC 37 ms
52,836 KB
testcase_11 AC 37 ms
53,628 KB
testcase_12 AC 38 ms
52,888 KB
testcase_13 AC 84 ms
76,616 KB
testcase_14 AC 85 ms
76,624 KB
testcase_15 AC 86 ms
76,904 KB
testcase_16 AC 45 ms
61,084 KB
testcase_17 AC 46 ms
60,624 KB
testcase_18 AC 60 ms
66,960 KB
testcase_19 AC 39 ms
54,392 KB
testcase_20 AC 45 ms
60,264 KB
testcase_21 AC 52 ms
63,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush

n = int(input())
A = list(map(int,input().split()))
q = int(input())
X = list(map(int,input().split()))

ans = sum(A)
dic = {}
for a in A:
    dic[a] = dic.get(a,0)+1

h = []
for key in dic.keys():
    heappush(h,-key)

for x in X:
    while -h[0] >= x:
        key = -heappop(h)
        num = dic[key]
        ans -= key*num
        nkey = key%x
        ans += nkey*num
        if nkey in dic:
            dic[nkey] += num
        else:
            dic[nkey] = num
            heappush(h,-nkey)
    print(ans)
0