結果

問題 No.885 アマリクエリ
ユーザー tjaketjake
提出日時 2019-09-14 00:02:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 625 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-07-04 10:40:12
合計ジャッジ時間 5,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 911 ms
101,100 KB
testcase_01 AC 394 ms
97,920 KB
testcase_02 AC 207 ms
97,744 KB
testcase_03 AC 174 ms
98,176 KB
testcase_04 AC 178 ms
97,736 KB
testcase_05 AC 124 ms
100,868 KB
testcase_06 AC 117 ms
105,088 KB
testcase_07 AC 100 ms
93,824 KB
testcase_08 AC 96 ms
101,376 KB
testcase_09 AC 400 ms
97,928 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 74 ms
74,776 KB
testcase_14 AC 74 ms
75,008 KB
testcase_15 AC 71 ms
74,496 KB
testcase_16 AC 56 ms
65,536 KB
testcase_17 AC 46 ms
61,184 KB
testcase_18 AC 57 ms
65,408 KB
testcase_19 AC 43 ms
58,752 KB
testcase_20 AC 44 ms
59,008 KB
testcase_21 AC 53 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush, heapify
N = int(input())
*A, = map(int, input().split())
Q = int(input())
*X, = map(int, input().split())

B = [-a for a in A]
heapify(B)
def gen(A, B):
    res = sum(A)
    for x in X:
        while x <= -B[0]:
            d = -heappop(B)
            res += (d % x) - d
            heappush(B, -(d % x))
        yield res
print(*gen(A, B), sep='\n')
0