結果

問題 No.885 アマリクエリ
ユーザー ああいいああいい
提出日時 2022-01-09 18:06:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 102,924 KB
最終ジャッジ日時 2024-11-14 10:27:17
合計ジャッジ時間 6,572 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
102,724 KB
testcase_01 AC 461 ms
98,348 KB
testcase_02 AC 245 ms
97,548 KB
testcase_03 AC 190 ms
97,156 KB
testcase_04 AC 187 ms
96,716 KB
testcase_05 AC 133 ms
102,924 KB
testcase_06 AC 129 ms
102,228 KB
testcase_07 AC 92 ms
91,292 KB
testcase_08 AC 104 ms
91,328 KB
testcase_09 AC 449 ms
98,360 KB
testcase_10 AC 38 ms
53,040 KB
testcase_11 AC 39 ms
53,076 KB
testcase_12 AC 39 ms
53,500 KB
testcase_13 AC 89 ms
76,480 KB
testcase_14 AC 89 ms
76,544 KB
testcase_15 AC 84 ms
76,828 KB
testcase_16 AC 64 ms
70,484 KB
testcase_17 AC 57 ms
64,876 KB
testcase_18 AC 68 ms
70,940 KB
testcase_19 AC 44 ms
59,748 KB
testcase_20 AC 56 ms
64,020 KB
testcase_21 AC 55 ms
64,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
Q = int(input())
X = list(map(int,input().split()))

Sum = sum(A)

A = [-a for a in A]
import heapq
heapq.heapify(A)

for x in X:
    while True:
        u = heapq.heappop(A)
        u = -u
        if u < x:
            heapq.heappush(A,-u)
            break
        else:
            t = u % x
            Sum -= (u-t)
            heapq.heappush(A,-t)
    print(Sum)
0