結果

問題 No.885 アマリクエリ
ユーザー 双六双六
提出日時 2020-08-28 16:11:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-04-26 12:11:51
合計ジャッジ時間 6,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
102,528 KB
testcase_01 AC 396 ms
101,144 KB
testcase_02 AC 177 ms
101,128 KB
testcase_03 AC 161 ms
101,196 KB
testcase_04 AC 165 ms
101,020 KB
testcase_05 AC 111 ms
102,560 KB
testcase_06 AC 109 ms
107,520 KB
testcase_07 AC 74 ms
89,344 KB
testcase_08 AC 86 ms
89,728 KB
testcase_09 AC 386 ms
100,992 KB
testcase_10 AC 43 ms
54,016 KB
testcase_11 AC 47 ms
54,400 KB
testcase_12 AC 47 ms
54,400 KB
testcase_13 AC 90 ms
77,440 KB
testcase_14 AC 92 ms
77,056 KB
testcase_15 AC 97 ms
77,436 KB
testcase_16 AC 71 ms
68,224 KB
testcase_17 AC 58 ms
62,976 KB
testcase_18 AC 71 ms
68,736 KB
testcase_19 AC 48 ms
54,912 KB
testcase_20 AC 51 ms
60,928 KB
testcase_21 AC 63 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
from heapq import heappop, heappush

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	A = getlist()
	S = sum(A)
	Q = int(input())
	X = getlist()
	hq = []
	for i in A:
		heappush(hq, -i)

	# print(hq)

	for i in range(Q):
		while -hq[0] >= X[i]:
			val = (-hq[0]) % X[i]
			S -= -hq[0] - val
			heappop(hq)
			heappush(hq, -val)

		print(S)

if __name__ == '__main__':
	main()
0