結果

問題 No.2770 Coupon Optimization
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-11-17 23:56:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 3,000 ms
コード長 591 bytes
コンパイル時間 3,140 ms
コンパイル使用メモリ 236,136 KB
実行使用メモリ 22,952 KB
最終ジャッジ日時 2024-05-08 15:28:27
合計ジャッジ時間 8,331 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 224 ms
22,952 KB
testcase_04 AC 222 ms
22,824 KB
testcase_05 AC 30 ms
11,212 KB
testcase_06 AC 218 ms
22,828 KB
testcase_07 AC 214 ms
22,828 KB
testcase_08 AC 243 ms
22,824 KB
testcase_09 AC 102 ms
11,412 KB
testcase_10 AC 116 ms
12,604 KB
testcase_11 AC 100 ms
11,124 KB
testcase_12 AC 211 ms
15,948 KB
testcase_13 AC 109 ms
12,792 KB
testcase_14 AC 236 ms
22,820 KB
testcase_15 AC 231 ms
22,824 KB
testcase_16 AC 235 ms
22,948 KB
testcase_17 AC 232 ms
22,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/convolution>

using namespace std;
using namespace atcoder;
using ll = long long;


int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll N, M;
    cin >> N >> M;
    vector<ll> A(N), B(max(N, M), 100), C;
    for (int i=0; i<N; i++){
        cin >> A[i];
        A[i] /= 100;
    }
    for (int i=0; i<M; i++){
        cin >> B[i];
        B[i] = 100-B[i];
    }
    sort(A.begin(), A.end());
    sort(B.begin(), B.end());

    C = convolution_ll(A, B);
    for (int i=0; i<N; i++) cout << C[i] << "\n";

    return 0;
}
0