結果

問題 No.885 アマリクエリ
ユーザー torikuminotorikumino
提出日時 2019-09-19 23:25:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 931 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 102,040 KB
最終ジャッジ日時 2024-07-21 16:16:19
合計ジャッジ時間 5,643 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 931 ms
98,804 KB
testcase_01 AC 407 ms
95,572 KB
testcase_02 AC 193 ms
96,032 KB
testcase_03 AC 168 ms
95,752 KB
testcase_04 AC 171 ms
95,680 KB
testcase_05 AC 113 ms
98,992 KB
testcase_06 AC 109 ms
102,040 KB
testcase_07 AC 99 ms
91,456 KB
testcase_08 AC 85 ms
91,432 KB
testcase_09 AC 410 ms
95,820 KB
testcase_10 AC 41 ms
54,100 KB
testcase_11 AC 41 ms
55,048 KB
testcase_12 AC 42 ms
54,404 KB
testcase_13 AC 84 ms
76,964 KB
testcase_14 AC 84 ms
77,044 KB
testcase_15 AC 83 ms
76,936 KB
testcase_16 AC 64 ms
68,904 KB
testcase_17 AC 53 ms
63,424 KB
testcase_18 AC 61 ms
67,964 KB
testcase_19 AC 47 ms
60,156 KB
testcase_20 AC 48 ms
61,420 KB
testcase_21 AC 59 ms
67,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from heapq import *
N = int(input())
A = list(map(int, input().split()))
Q = int(input())
X = list(map(int, input().split()))
h = [-e for e in A]
heapify(h)
r = sum(A)
for x in X:
    while -h[0] >= x:
        v = -heappop(h)
        r -= v
        v %= x
        heappush(h, -v)
        r += v
    print(r)
0