結果

問題 No.885 アマリクエリ
ユーザー 👑 rin204rin204
提出日時 2022-09-30 23:18:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 821 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,264 KB
最終ジャッジ日時 2024-06-02 06:42:47
合計ジャッジ時間 6,046 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 821 ms
102,264 KB
testcase_01 AC 372 ms
96,768 KB
testcase_02 AC 181 ms
96,384 KB
testcase_03 AC 156 ms
96,292 KB
testcase_04 AC 159 ms
95,232 KB
testcase_05 AC 114 ms
100,480 KB
testcase_06 AC 107 ms
101,504 KB
testcase_07 AC 98 ms
91,488 KB
testcase_08 AC 87 ms
90,988 KB
testcase_09 AC 364 ms
97,024 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 84 ms
76,592 KB
testcase_14 AC 83 ms
76,228 KB
testcase_15 AC 83 ms
76,288 KB
testcase_16 AC 61 ms
66,048 KB
testcase_17 AC 49 ms
61,056 KB
testcase_18 AC 65 ms
66,304 KB
testcase_19 AC 46 ms
58,368 KB
testcase_20 AC 46 ms
59,648 KB
testcase_21 AC 57 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n = int(input())
A = list(map(int, input().split()))
Q = int(input())
X = list(map(int, input().split()))
ans = sum(A)
hq = [-a for a in A]
heapify(hq)
for x in X:
    while -hq[0] >= x:
        a = -heappop(hq)
        ans -= a
        a %= x
        ans += a
        heappush(hq, -a)
    print(ans)
0