結果

問題 No.885 アマリクエリ
ユーザー AEnAEn
提出日時 2023-07-12 17:55:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,023 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 107,208 KB
最終ジャッジ日時 2024-09-14 07:19:05
合計ジャッジ時間 6,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,023 ms
102,468 KB
testcase_01 AC 457 ms
97,016 KB
testcase_02 AC 238 ms
100,112 KB
testcase_03 AC 187 ms
99,372 KB
testcase_04 AC 191 ms
100,352 KB
testcase_05 AC 135 ms
100,512 KB
testcase_06 AC 130 ms
107,208 KB
testcase_07 AC 75 ms
92,444 KB
testcase_08 AC 112 ms
91,536 KB
testcase_09 AC 462 ms
97,004 KB
testcase_10 AC 40 ms
53,176 KB
testcase_11 AC 40 ms
53,444 KB
testcase_12 AC 40 ms
53,272 KB
testcase_13 AC 91 ms
76,348 KB
testcase_14 AC 91 ms
76,524 KB
testcase_15 AC 91 ms
76,720 KB
testcase_16 AC 65 ms
70,252 KB
testcase_17 AC 59 ms
66,540 KB
testcase_18 AC 69 ms
71,408 KB
testcase_19 AC 43 ms
53,684 KB
testcase_20 AC 55 ms
64,544 KB
testcase_21 AC 56 ms
64,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush
N = int(input())
A = list(map(int, input().split()))
Q = int(input())
X = list(map(int, input().split()))
hq = []
sm = 0
for i in range(N):
    heappush(hq,-A[i])
    sm += A[i]

for x in X:
    while 1:
        v = -heappop(hq)
        if v>=x:
            sm -= v
            sm += v%x
            heappush(hq,-(v%x))
        else:
            heappush(hq,-v)
            break
    print(sm)
0