結果

問題 No.885 アマリクエリ
ユーザー 双六双六
提出日時 2020-08-28 16:11:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 910 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 856 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 107,460 KB
最終ジャッジ日時 2024-11-13 23:20:47
合計ジャッジ時間 7,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 910 ms
102,284 KB
testcase_01 AC 366 ms
100,876 KB
testcase_02 AC 159 ms
100,844 KB
testcase_03 AC 152 ms
100,932 KB
testcase_04 AC 157 ms
101,016 KB
testcase_05 AC 97 ms
102,384 KB
testcase_06 AC 97 ms
107,460 KB
testcase_07 AC 69 ms
90,360 KB
testcase_08 AC 77 ms
89,840 KB
testcase_09 AC 368 ms
100,964 KB
testcase_10 AC 40 ms
55,652 KB
testcase_11 AC 40 ms
54,968 KB
testcase_12 AC 41 ms
54,172 KB
testcase_13 AC 82 ms
76,892 KB
testcase_14 AC 80 ms
76,984 KB
testcase_15 AC 82 ms
77,200 KB
testcase_16 AC 59 ms
68,356 KB
testcase_17 AC 49 ms
64,504 KB
testcase_18 AC 61 ms
68,824 KB
testcase_19 AC 42 ms
55,448 KB
testcase_20 AC 47 ms
61,088 KB
testcase_21 AC 55 ms
66,872 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