結果

問題 No.885 アマリクエリ
ユーザー maspymaspy
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 923 ms
107,464 KB
testcase_01 AC 395 ms
101,564 KB
testcase_02 AC 178 ms
101,724 KB
testcase_03 AC 156 ms
102,228 KB
testcase_04 AC 158 ms
101,620 KB
testcase_05 AC 112 ms
108,592 KB
testcase_06 AC 104 ms
105,704 KB
testcase_07 AC 94 ms
91,736 KB
testcase_08 AC 74 ms
95,660 KB
testcase_09 AC 402 ms
102,100 KB
testcase_10 AC 38 ms
52,672 KB
testcase_11 AC 38 ms
53,792 KB
testcase_12 AC 38 ms
52,944 KB
testcase_13 AC 71 ms
73,648 KB
testcase_14 AC 71 ms
73,904 KB
testcase_15 AC 69 ms
73,940 KB
testcase_16 AC 53 ms
64,712 KB
testcase_17 AC 44 ms
60,252 KB
testcase_18 AC 55 ms
65,340 KB
testcase_19 AC 44 ms
58,692 KB
testcase_20 AC 41 ms
54,268 KB
testcase_21 AC 54 ms
65,916 KB
権限があれば一括ダウンロードができます

ソースコード

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