結果

問題 No.885 アマリクエリ
ユーザー torikuminotorikumino
提出日時 2019-09-19 23:18:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 163,548 KB
最終ジャッジ日時 2024-07-21 16:01:12
合計ジャッジ時間 5,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 226 ms
101,632 KB
testcase_03 AC 162 ms
95,564 KB
testcase_04 AC 162 ms
95,776 KB
testcase_05 AC 121 ms
98,176 KB
testcase_06 AC 116 ms
101,888 KB
testcase_07 AC 114 ms
92,776 KB
testcase_08 AC 89 ms
91,372 KB
testcase_09 WA -
testcase_10 AC 45 ms
53,504 KB
testcase_11 AC 43 ms
54,016 KB
testcase_12 AC 44 ms
53,760 KB
testcase_13 AC 95 ms
76,672 KB
testcase_14 AC 96 ms
76,928 KB
testcase_15 AC 93 ms
76,904 KB
testcase_16 AC 62 ms
65,664 KB
testcase_17 AC 54 ms
62,848 KB
testcase_18 AC 66 ms
67,456 KB
testcase_19 AC 49 ms
60,416 KB
testcase_20 AC 51 ms
61,184 KB
testcase_21 AC 60 ms
64,896 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