結果
問題 | No.885 アマリクエリ |
ユーザー | mdstoy |
提出日時 | 2019-09-14 18:03:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,373 bytes |
コンパイル時間 | 1,636 ms |
コンパイル使用メモリ | 177,308 KB |
実行使用メモリ | 9,856 KB |
最終ジャッジ日時 | 2024-07-06 06:27:08 |
合計ジャッジ時間 | 4,799 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 174 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 243 ms
9,600 KB |
testcase_03 | AC | 202 ms
6,940 KB |
testcase_04 | AC | 203 ms
6,944 KB |
testcase_05 | AC | 179 ms
6,944 KB |
testcase_06 | AC | 153 ms
6,940 KB |
testcase_07 | AC | 66 ms
9,728 KB |
testcase_08 | AC | 155 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 4 ms
6,944 KB |
testcase_17 | AC | 3 ms
6,944 KB |
testcase_18 | AC | 4 ms
6,944 KB |
testcase_19 | AC | 3 ms
6,944 KB |
testcase_20 | AC | 3 ms
6,940 KB |
testcase_21 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define FOR(i, m, n) for (int i = (m); i < (n); i++) #define REP(i, n) FOR(i, 0, n) #define REP1(i, n) FOR(i, 1, (n) + 1) #define ALL(c) (c).begin(), (c).end() template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;} template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;} const int MOD = 1000000007; int main() { int n; cin >> n; map<ll, ll> m; ll t = 0; ll a; REP(i, n) { cin >> a; t += a; m[a]++; } int q; cin >> q; ll x; REP(i, q) { ll s = t; cin >> x; for (auto itr = m.rbegin(); itr != m.rend(); itr++) { if (itr->second == 0) continue; if (itr->first >= x) { ll y = itr->first - itr->first % x; if (y == 0) { s -= itr->first * itr->second; m[0] += itr->second; m.erase(itr->first); } else { s -= (itr->first - itr->first % x) * itr->second; m[itr->first % x] += itr->second; m.erase(itr->first); } } else { break; } } cout << s << endl; t = s; } }