結果

問題 No.885 アマリクエリ
ユーザー le_panda_noirle_panda_noir
提出日時 2020-04-12 15:38:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 78,768 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-22 02:40:11
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 357 ms
5,248 KB
testcase_01 AC 269 ms
5,376 KB
testcase_02 AC 217 ms
5,376 KB
testcase_03 AC 215 ms
5,376 KB
testcase_04 AC 206 ms
5,376 KB
testcase_05 AC 177 ms
5,376 KB
testcase_06 AC 154 ms
5,376 KB
testcase_07 AC 41 ms
5,376 KB
testcase_08 AC 162 ms
5,376 KB
testcase_09 AC 273 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>

using namespace std;
using ll = long long;

#define in(v) v; cin >> v;
#define rep(i,n) for(int i=0;i<(n);++i)

int main() {
  int in(N);

  priority_queue<int> q;
  ll sum = 0;
  rep(i, N) {
    int in(A);
    sum += A;
    q.push(A);
  }

  int in(Q);
  rep(i, Q) {
    int in(x);
    while (q.top() >= x) {
      int p = q.top(); q.pop();
      sum -= p;
      sum += p % x;
      q.push(p % x);
    }
    cout << sum << endl;
  }

  return 0;
}
0