結果

問題 No.885 アマリクエリ
ユーザー hedwig100hedwig100
提出日時 2020-05-17 15:59:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 913 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 102,292 KB
最終ジャッジ日時 2024-09-25 08:16:46
合計ジャッジ時間 5,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 913 ms
100,556 KB
testcase_01 AC 372 ms
95,864 KB
testcase_02 AC 169 ms
95,532 KB
testcase_03 AC 153 ms
96,020 KB
testcase_04 AC 152 ms
95,504 KB
testcase_05 AC 103 ms
101,184 KB
testcase_06 AC 96 ms
102,292 KB
testcase_07 AC 94 ms
90,376 KB
testcase_08 AC 69 ms
90,216 KB
testcase_09 AC 378 ms
96,328 KB
testcase_10 AC 39 ms
54,024 KB
testcase_11 AC 39 ms
53,292 KB
testcase_12 AC 39 ms
52,452 KB
testcase_13 AC 73 ms
74,344 KB
testcase_14 AC 72 ms
74,476 KB
testcase_15 AC 70 ms
75,288 KB
testcase_16 AC 54 ms
65,000 KB
testcase_17 AC 44 ms
59,600 KB
testcase_18 AC 55 ms
66,080 KB
testcase_19 AC 44 ms
58,900 KB
testcase_20 AC 39 ms
54,692 KB
testcase_21 AC 55 ms
64,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000000)
input = sys.stdin.readline
MOD = 10 ** 9 + 7
INF = 10 ** 15
from heapq import  heapify,heappop,heappush

def main():
    N = int(input())
    A = list(map(int,input().split()))
    A = [-a for a in A]
    Q = int(input())
    X = list(map(int,input().split()))
    
    ans = [0] * (Q + 1)
    ans[0] = -sum(A)
    heapify(A)
    for i,q in enumerate(X):
        while -A[0] >= q:
            a = -heappop(A)
            ans[i] -= (a//q) * q
            a %= q
            heappush(A,-a)
        ans[i + 1] = ans[i]
    print('\n'.join(map(str,ans[:-1])))
if __name__ == '__main__':
    main()

0