結果

問題 No.885 アマリクエリ
ユーザー maspy
提出日時 2020-02-06 10:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 108,592 KB
最終ジャッジ日時 2024-09-25 04:57:17
合計ジャッジ時間 5,687 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

from heapq import heappop, heappush, heapify

N = int(readline())
*A, = map(int,readline().split())
Q = int(readline())
*X, = map(int,readline().split())

q = [-x for x in A]
heapify(q)
S = sum(A)
answers = []
for x in X:
    while -q[0] >= x:
        a = -heappop(q)
        r = a % x
        S -= (a - r)
        heappush(q, -r)
    answers.append(S)

print('\n'.join(map(str, answers)))
0