結果

問題 No.2770 Coupon Optimization
ユーザー t98slidert98slider
提出日時 2024-05-31 22:43:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 247 ms / 3,000 ms
コード長 546 bytes
コンパイル時間 4,615 ms
コンパイル使用メモリ 264,812 KB
実行使用メモリ 22,956 KB
最終ジャッジ日時 2024-05-31 22:43:36
合計ジャッジ時間 9,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 218 ms
22,956 KB
testcase_04 AC 228 ms
22,948 KB
testcase_05 AC 32 ms
11,216 KB
testcase_06 AC 226 ms
22,948 KB
testcase_07 AC 223 ms
22,908 KB
testcase_08 AC 247 ms
22,804 KB
testcase_09 AC 106 ms
11,540 KB
testcase_10 AC 117 ms
12,728 KB
testcase_11 AC 102 ms
10,992 KB
testcase_12 AC 205 ms
15,952 KB
testcase_13 AC 119 ms
12,668 KB
testcase_14 AC 242 ms
22,952 KB
testcase_15 AC 243 ms
22,952 KB
testcase_16 AC 243 ms
22,928 KB
testcase_17 AC 245 ms
22,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    vector<ll> a(n), b(m);
    for(auto &&v : a){
        cin >> v;
        v /= 100;
    }
    for(auto &&v : b){
        cin >> v;
        v = 100 - v;
    }
    while(b.size() < n) b.push_back(100);
    sort(a.begin(), a.end());
    sort(b.begin(), b.end());
    auto c = atcoder::convolution_ll(a, b);
    for(int i = 0; i < n; i++) cout << c[i] << '\n';
}
0