結果

問題 No.885 アマリクエリ
ユーザー H3PO4H3PO4
提出日時 2021-03-07 10:07:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-10-08 23:07:03
合計ジャッジ時間 6,433 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
100,992 KB
testcase_01 AC 413 ms
102,400 KB
testcase_02 AC 195 ms
102,016 KB
testcase_03 AC 166 ms
102,656 KB
testcase_04 AC 170 ms
102,400 KB
testcase_05 AC 114 ms
101,888 KB
testcase_06 AC 110 ms
100,480 KB
testcase_07 AC 97 ms
91,520 KB
testcase_08 AC 81 ms
87,168 KB
testcase_09 AC 419 ms
102,528 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 83 ms
75,776 KB
testcase_14 AC 82 ms
76,160 KB
testcase_15 AC 79 ms
75,264 KB
testcase_16 AC 60 ms
65,024 KB
testcase_17 AC 49 ms
60,032 KB
testcase_18 AC 62 ms
65,792 KB
testcase_19 AC 45 ms
58,496 KB
testcase_20 AC 46 ms
59,520 KB
testcase_21 AC 57 ms
63,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq

input = sys.stdin.buffer.readline

N = int(input())
A = tuple(map(int, input().split()))
Q = int(input())
X = map(int, input().split())
h = [-a for a in A]
heapq.heapify(h)
cur = sum(A)
for x in X:
    while -h[0] >= x:
        a = -heapq.heappop(h)
        cur -= a
        a %= x
        cur += a
        heapq.heappush(h, -a)
    print(cur)
0