結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 918 ms
102,272 KB
testcase_01 AC 379 ms
96,896 KB
testcase_02 AC 165 ms
99,316 KB
testcase_03 AC 159 ms
99,452 KB
testcase_04 AC 158 ms
99,960 KB
testcase_05 AC 106 ms
100,608 KB
testcase_06 AC 97 ms
106,880 KB
testcase_07 AC 72 ms
92,288 KB
testcase_08 AC 85 ms
91,008 KB
testcase_09 AC 377 ms
96,512 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 38 ms
52,608 KB
testcase_12 AC 35 ms
52,096 KB
testcase_13 AC 80 ms
76,416 KB
testcase_14 AC 80 ms
76,544 KB
testcase_15 AC 77 ms
75,904 KB
testcase_16 AC 60 ms
66,176 KB
testcase_17 AC 47 ms
61,312 KB
testcase_18 AC 55 ms
66,176 KB
testcase_19 AC 40 ms
53,120 KB
testcase_20 AC 46 ms
59,392 KB
testcase_21 AC 52 ms
64,256 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