結果

問題 No.885 アマリクエリ
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-24 00:57:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 999 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 101,192 KB
最終ジャッジ日時 2024-09-21 16:40:16
合計ジャッジ時間 6,650 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 999 ms
99,840 KB
testcase_01 AC 423 ms
96,000 KB
testcase_02 AC 202 ms
96,000 KB
testcase_03 AC 172 ms
95,548 KB
testcase_04 AC 175 ms
94,976 KB
testcase_05 AC 117 ms
101,120 KB
testcase_06 AC 109 ms
101,192 KB
testcase_07 AC 98 ms
90,476 KB
testcase_08 AC 85 ms
91,644 KB
testcase_09 AC 427 ms
96,000 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 39 ms
52,480 KB
testcase_13 AC 86 ms
76,544 KB
testcase_14 AC 85 ms
76,456 KB
testcase_15 AC 84 ms
76,032 KB
testcase_16 AC 62 ms
65,408 KB
testcase_17 AC 50 ms
60,160 KB
testcase_18 AC 63 ms
65,792 KB
testcase_19 AC 46 ms
58,624 KB
testcase_20 AC 48 ms
59,392 KB
testcase_21 AC 57 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
A = list(map(lambda x: -int(x), input().split()))
Q = int(input())
X = list(map(int, input().split()))

heapq.heapify(A)
ans = -sum(A)
for x in X:
    while x <= -A[0]:
        a = -heapq.heappop(A)
        ans -= a
        heapq.heappush(A, -(a % x))
        ans += a % x
    print(ans)
0