結果

問題 No.885 アマリクエリ
ユーザー NoneNone
提出日時 2021-04-04 21:03:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 975 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 107,032 KB
最終ジャッジ日時 2024-12-28 08:03:49
合計ジャッジ時間 6,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 975 ms
102,400 KB
testcase_01 AC 409 ms
96,768 KB
testcase_02 AC 179 ms
99,504 KB
testcase_03 AC 167 ms
98,932 KB
testcase_04 AC 166 ms
99,964 KB
testcase_05 AC 108 ms
100,904 KB
testcase_06 AC 103 ms
107,032 KB
testcase_07 AC 73 ms
92,288 KB
testcase_08 AC 82 ms
91,008 KB
testcase_09 AC 405 ms
96,512 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 42 ms
52,352 KB
testcase_13 AC 83 ms
76,416 KB
testcase_14 AC 86 ms
76,668 KB
testcase_15 AC 81 ms
76,160 KB
testcase_16 AC 59 ms
66,816 KB
testcase_17 AC 50 ms
61,440 KB
testcase_18 AC 61 ms
66,560 KB
testcase_19 AC 42 ms
52,992 KB
testcase_20 AC 46 ms
59,264 KB
testcase_21 AC 56 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *
N=int(input())
A=list(map(int, input().split()))
Q=int(input())
X=list(map(int, input().split()))

S=sum(A)
H=[]
for a in A:
    heappush(H,-a)

for x in X:
    while -H[0]>=x:
        a=-heappop(H)
        S-=a
        a%=x
        S+=a
        heappush(H,-a)
    print(S)
0