結果

問題 No.2770 Coupon Optimization
ユーザー nononnonon
提出日時 2024-05-31 22:13:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 522 ms / 3,000 ms
コード長 468 bytes
コンパイル時間 3,698 ms
コンパイル使用メモリ 237,292 KB
実行使用メモリ 22,956 KB
最終ジャッジ日時 2024-05-31 22:13:47
合計ジャッジ時間 11,617 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 457 ms
22,784 KB
testcase_04 AC 478 ms
22,928 KB
testcase_05 AC 33 ms
11,088 KB
testcase_06 AC 480 ms
22,952 KB
testcase_07 AC 468 ms
22,956 KB
testcase_08 AC 521 ms
22,916 KB
testcase_09 AC 155 ms
11,412 KB
testcase_10 AC 231 ms
12,604 KB
testcase_11 AC 191 ms
11,120 KB
testcase_12 AC 345 ms
16,080 KB
testcase_13 AC 234 ms
12,792 KB
testcase_14 AC 497 ms
22,828 KB
testcase_15 AC 522 ms
22,824 KB
testcase_16 AC 490 ms
22,904 KB
testcase_17 AC 518 ms
22,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/convolution>
using namespace std;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,M;
    cin>>N>>M;
    vector<long long>A(N),B(M);
    for(long long&a:A)cin>>a;
    for(long long&b:B)cin>>b,b=100-b;
    sort(A.begin(),A.end());
    sort(B.begin(),B.end());
    while(B.size()<N)B.push_back(100);
    vector<long long>C=atcoder::convolution_ll(A,B);
    for(int i=0;i<N;i++)cout<<C[i]/100<<endl;
}
0