結果

問題 No.885 アマリクエリ
ユーザー hedwig100hedwig100
提出日時 2020-05-17 15:59:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 639 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,484 KB
最終ジャッジ日時 2024-09-25 08:16:06
合計ジャッジ時間 9,598 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 670 ms
28,072 KB
testcase_02 AC 224 ms
28,484 KB
testcase_03 AC 210 ms
26,696 KB
testcase_04 AC 211 ms
26,848 KB
testcase_05 AC 122 ms
22,584 KB
testcase_06 AC 107 ms
19,632 KB
testcase_07 AC 75 ms
21,584 KB
testcase_08 AC 97 ms
21,712 KB
testcase_09 AC 675 ms
28,328 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 33 ms
11,008 KB
testcase_14 AC 34 ms
10,880 KB
testcase_15 AC 35 ms
10,880 KB
testcase_16 AC 33 ms
11,008 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 32 ms
10,880 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