結果

問題 No.885 アマリクエリ
ユーザー ああいいああいい
提出日時 2022-01-09 18:06:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 102,784 KB
最終ジャッジ日時 2024-04-26 19:50:15
合計ジャッジ時間 6,837 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
102,656 KB
testcase_01 AC 461 ms
98,176 KB
testcase_02 AC 250 ms
97,536 KB
testcase_03 AC 193 ms
97,536 KB
testcase_04 AC 190 ms
96,768 KB
testcase_05 AC 137 ms
102,784 KB
testcase_06 AC 132 ms
101,740 KB
testcase_07 AC 96 ms
91,232 KB
testcase_08 AC 108 ms
91,392 KB
testcase_09 AC 460 ms
98,248 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 38 ms
52,608 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 91 ms
76,288 KB
testcase_14 AC 89 ms
76,288 KB
testcase_15 AC 88 ms
76,544 KB
testcase_16 AC 64 ms
68,864 KB
testcase_17 AC 57 ms
64,384 KB
testcase_18 AC 68 ms
70,400 KB
testcase_19 AC 45 ms
58,880 KB
testcase_20 AC 54 ms
62,464 KB
testcase_21 AC 57 ms
63,872 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