結果
問題 | No.2770 Coupon Optimization |
ユーザー | srjywrdnprkt |
提出日時 | 2023-11-30 10:48:11 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 590 bytes |
コンパイル時間 | 2,081 ms |
コンパイル使用メモリ | 205,896 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-09-29 13:01:32 |
合計ジャッジ時間 | 6,848 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,632 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll N, M, S=0; 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()); for (int i=1; i<=N; i++){ S = 0; for (int j=0; j<i; j++) S += A[j] * B[i-1-j]; cout << S << '\n'; } return 0; }