結果
問題 | No.2770 Coupon Optimization |
ユーザー | srjywrdnprkt |
提出日時 | 2023-11-17 11:55:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 583 bytes |
コンパイル時間 | 2,095 ms |
コンパイル使用メモリ | 205,980 KB |
実行使用メモリ | 13,632 KB |
最終ジャッジ日時 | 2024-09-29 13:01:17 |
合計ジャッジ時間 | 7,074 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
11,520 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 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(N, 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; }