結果

問題 No.885 アマリクエリ
ユーザー convexineqconvexineq
提出日時 2021-04-07 22:31:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 993 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 95,716 KB
最終ジャッジ日時 2024-06-23 02:43:07
合計ジャッジ時間 6,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 993 ms
92,824 KB
testcase_01 AC 436 ms
94,900 KB
testcase_02 AC 214 ms
95,560 KB
testcase_03 AC 183 ms
94,728 KB
testcase_04 AC 188 ms
95,464 KB
testcase_05 AC 130 ms
95,716 KB
testcase_06 AC 123 ms
92,160 KB
testcase_07 AC 111 ms
92,800 KB
testcase_08 AC 100 ms
93,184 KB
testcase_09 AC 438 ms
94,952 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 42 ms
52,352 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 96 ms
76,544 KB
testcase_14 AC 89 ms
75,008 KB
testcase_15 AC 94 ms
76,032 KB
testcase_16 AC 69 ms
65,792 KB
testcase_17 AC 55 ms
61,184 KB
testcase_18 AC 72 ms
65,664 KB
testcase_19 AC 51 ms
58,752 KB
testcase_20 AC 53 ms
59,136 KB
testcase_21 AC 64 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
n = int(input())
*a, = map(int,input().split())
for i in range(n):
    a[i] *= -1
heapify(a)
ans = -sum(a)
Q = int(input())
*x, = map(int,input().split())
for xi in x:
    while xi <= -a[0]:
        v = -heappop(a)
        ans -= v
        v %= xi
        ans += v
        heappush(a,-v)
    print(ans)
0