結果

問題 No.885 アマリクエリ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-04-08 16:28:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,017 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 100,760 KB
最終ジャッジ日時 2024-10-03 12:12:05
合計ジャッジ時間 7,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,017 ms
94,120 KB
testcase_01 AC 492 ms
96,104 KB
testcase_02 AC 268 ms
94,052 KB
testcase_03 AC 200 ms
93,708 KB
testcase_04 AC 200 ms
93,392 KB
testcase_05 AC 150 ms
94,372 KB
testcase_06 AC 142 ms
100,760 KB
testcase_07 AC 106 ms
90,980 KB
testcase_08 AC 118 ms
90,368 KB
testcase_09 AC 490 ms
96,112 KB
testcase_10 AC 47 ms
55,808 KB
testcase_11 AC 48 ms
55,552 KB
testcase_12 AC 48 ms
56,064 KB
testcase_13 AC 102 ms
77,184 KB
testcase_14 AC 102 ms
77,312 KB
testcase_15 AC 99 ms
77,184 KB
testcase_16 AC 78 ms
72,064 KB
testcase_17 AC 70 ms
67,712 KB
testcase_18 AC 78 ms
73,728 KB
testcase_19 AC 54 ms
62,080 KB
testcase_20 AC 64 ms
65,664 KB
testcase_21 AC 64 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))
Q = int(input())
X = list(map(int,input().split()))
S = sum(A)
h = [-a for a in A]
heapify(h)
for i in range(Q):
    
    x = X[i]
    
    while True:
        
        y = heappop(h)
        y *= -1
        if y<x:
            heappush(h,-y)
            break
        
        S += (y%x - y)
        heappush(h,-(y%x))
    print(S)
0