結果

問題 No.885 アマリクエリ
ユーザー rlangevinrlangevin
提出日時 2023-07-05 12:19:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 997 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 106,752 KB
最終ジャッジ日時 2024-07-19 06:34:11
合計ジャッジ時間 6,990 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 997 ms
102,528 KB
testcase_01 AC 458 ms
96,512 KB
testcase_02 AC 237 ms
100,316 KB
testcase_03 AC 194 ms
99,296 KB
testcase_04 AC 198 ms
99,968 KB
testcase_05 AC 136 ms
100,568 KB
testcase_06 AC 130 ms
106,752 KB
testcase_07 AC 74 ms
91,776 KB
testcase_08 AC 110 ms
91,256 KB
testcase_09 AC 460 ms
96,860 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 92 ms
76,032 KB
testcase_14 AC 92 ms
76,416 KB
testcase_15 AC 91 ms
76,188 KB
testcase_16 AC 67 ms
68,864 KB
testcase_17 AC 60 ms
65,280 KB
testcase_18 AC 75 ms
70,784 KB
testcase_19 AC 42 ms
53,760 KB
testcase_20 AC 58 ms
62,720 KB
testcase_21 AC 57 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

N = int(input())
A = list(map(int, input().split()))
Q = int(input())
X = list(map(int, input().split()))
ans = sum(A)
H = []
for a in A:
    heappush(H, -a)

for x in X:
    while True:
        now = -heappop(H)
        if now < x:
            heappush(H, -now)
            break
        else:
            nex = now % x
            ans -= now - nex
            heappush(H, -nex)

    print(ans)
0