結果

問題 No.885 アマリクエリ
ユーザー roarisroaris
提出日時 2020-12-02 19:29:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 106,624 KB
最終ジャッジ日時 2024-09-13 10:39:09
合計ジャッジ時間 6,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
101,404 KB
testcase_01 AC 398 ms
92,200 KB
testcase_02 AC 174 ms
97,744 KB
testcase_03 AC 159 ms
97,768 KB
testcase_04 AC 159 ms
96,744 KB
testcase_05 AC 101 ms
101,604 KB
testcase_06 AC 99 ms
106,624 KB
testcase_07 AC 74 ms
91,488 KB
testcase_08 AC 84 ms
90,144 KB
testcase_09 AC 395 ms
92,096 KB
testcase_10 AC 38 ms
53,228 KB
testcase_11 AC 38 ms
52,560 KB
testcase_12 AC 38 ms
53,180 KB
testcase_13 AC 86 ms
76,256 KB
testcase_14 AC 79 ms
75,952 KB
testcase_15 AC 82 ms
76,600 KB
testcase_16 AC 60 ms
66,612 KB
testcase_17 AC 49 ms
62,560 KB
testcase_18 AC 60 ms
67,580 KB
testcase_19 AC 40 ms
53,212 KB
testcase_20 AC 46 ms
60,284 KB
testcase_21 AC 54 ms
65,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *

N = int(input())
A = list(map(int, input().split()))
ans = 0
pq = []

for Ai in A:
    ans += Ai
    heappush(pq, -Ai)

Q = int(input())
X = list(map(int, input().split()))

for Xi in X:
    while -pq[0]>=Xi:
        v = -heappop(pq)
        ans -= v
        heappush(pq, -(v%Xi))
        ans += v%Xi
    
    print(ans)
0