結果
問題 |
No.885 アマリクエリ
|
ユーザー |
|
提出日時 | 2024-04-23 14:30:42 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 824 ms / 2,000 ms |
コード長 | 530 bytes |
コンパイル時間 | 2,315 ms |
コンパイル使用メモリ | 199,124 KB |
最終ジャッジ日時 | 2025-02-21 08:43:02 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#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"; } }