結果

問題 No.885 アマリクエリ
ユーザー torikuminotorikumino
提出日時 2019-09-19 23:21:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,196 KB
最終ジャッジ日時 2024-07-21 16:06:39
合計ジャッジ時間 7,499 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 409 ms
32,380 KB
testcase_03 AC 368 ms
26,996 KB
testcase_04 AC 370 ms
25,908 KB
testcase_05 AC 177 ms
22,792 KB
testcase_06 AC 159 ms
13,544 KB
testcase_07 AC 90 ms
27,412 KB
testcase_08 AC 146 ms
21,680 KB
testcase_09 WA -
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 40 ms
11,264 KB
testcase_14 AC 41 ms
11,392 KB
testcase_15 AC 42 ms
11,392 KB
testcase_16 AC 33 ms
11,008 KB
testcase_17 AC 32 ms
10,880 KB
testcase_18 AC 33 ms
11,136 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 30 ms
11,008 KB
testcase_21 AC 33 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from heapq import *
N = int(input())
A = list(map(int, input().split()))
Q = int(input())
X = list(map(int, input().split()))
h = [-e for e in A]
heapify(h)
c = Counter(A)
r = sum(A)
for x in X:
    while -h[0] >= x:
        v = -heappop(h)
        r -= v * c[v]
        c[v] = 0
        v %= x
        if c[v] == 0:
            heappush(h, -v)
        c[v] += 1
        r += v
    print(r)

0