結果

問題 No.885 アマリクエリ
ユーザー kohei2019kohei2019
提出日時 2022-05-11 23:08:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 850 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,328 KB
最終ジャッジ日時 2024-07-19 09:00:18
合計ジャッジ時間 6,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 850 ms
102,328 KB
testcase_01 AC 378 ms
96,768 KB
testcase_02 AC 208 ms
96,284 KB
testcase_03 AC 165 ms
95,728 KB
testcase_04 AC 165 ms
94,916 KB
testcase_05 AC 119 ms
100,352 KB
testcase_06 AC 123 ms
101,552 KB
testcase_07 AC 84 ms
91,392 KB
testcase_08 AC 94 ms
90,940 KB
testcase_09 AC 377 ms
96,480 KB
testcase_10 AC 34 ms
52,696 KB
testcase_11 AC 32 ms
52,352 KB
testcase_12 AC 31 ms
52,352 KB
testcase_13 AC 76 ms
76,216 KB
testcase_14 AC 84 ms
76,148 KB
testcase_15 AC 77 ms
76,072 KB
testcase_16 AC 57 ms
68,992 KB
testcase_17 AC 49 ms
64,256 KB
testcase_18 AC 60 ms
70,656 KB
testcase_19 AC 39 ms
59,392 KB
testcase_20 AC 47 ms
62,464 KB
testcase_21 AC 49 ms
64,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
h = list(map(int, input().split()))
Q = int(input())
lsX = list(map(int, input().split()))

h = [-i for i in h]
heapq.heapify(h)

allsum = -sum(h) 
for i in range(Q):
    x = lsX[i]
    while True:
        p = heapq.heappop(h)
        if p <= -x:
            n = (-p)%x
            allsum -= (-p)-n
            heapq.heappush(h, -n)
        else:
            heapq.heappush(h, p)
            break
    print(allsum)
0