結果

問題 No.885 アマリクエリ
ユーザー otoshigootoshigo
提出日時 2024-04-23 14:30:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 734 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 207,496 KB
実行使用メモリ 10,436 KB
最終ジャッジ日時 2024-10-15 14:42:49
合計ジャッジ時間 6,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 734 ms
9,796 KB
testcase_01 AC 193 ms
10,436 KB
testcase_02 AC 89 ms
8,704 KB
testcase_03 AC 78 ms
9,600 KB
testcase_04 AC 79 ms
9,600 KB
testcase_05 AC 47 ms
8,576 KB
testcase_06 AC 43 ms
8,576 KB
testcase_07 AC 35 ms
8,704 KB
testcase_08 AC 18 ms
5,248 KB
testcase_09 AC 173 ms
10,308 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N;
	cin>>N;
	vector<ll>A(N);
	for(int i=0;i<N;i++)cin>>A[i];
	int Q;
	cin>>Q;
	ll sum=0;
	multiset<ll>se;
	for(int i=0;i<N;i++){
		sum+=A[i];
		se.insert(-A[i]);
	}
	while(Q--){
		ll X;
		cin>>X;
		vector<ll>V;
		while(se.size()&&X<=-*se.begin()){
			ll a=-*se.begin();
			sum-=a;
			se.erase(se.find(-a));
			sum+=a%X;
			V.push_back(a%X);
		}
		for(auto x:V)se.insert(-x);
		cout<<sum<<"\n";
	}
}
0