結果
問題 | No.1015 おつりは要らないです |
ユーザー | SSRS |
提出日時 | 2020-04-03 22:34:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,319 bytes |
コンパイル時間 | 1,473 ms |
コンパイル使用メモリ | 172,488 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 04:44:16 |
合計ジャッジ時間 | 3,863 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 36 ms
5,376 KB |
testcase_16 | AC | 38 ms
5,376 KB |
testcase_17 | AC | 37 ms
5,376 KB |
testcase_18 | AC | 37 ms
5,376 KB |
testcase_19 | AC | 38 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 41 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N, X, Y, Z; cin >> N >> X >> Y >> Z; vector<int> A(N); sort(A.begin(), A.end()); for (int i = 0; i < N; i++){ cin >> A[i]; A[i] = (A[i] + 1000) / 1000; } long long total = 0; for (int i = 0; i < N; i++){ total += A[i]; } if (total > X + Y * 5 + Z * 10){ cout << "No" << endl; } else { bool flg = true; int a = 0, b = 0, c = 0; vector<int> ca(N), cb(N), cc(N); for (int i = 0; i < N; i++){ a += A[i]; ca[i] += A[i]; if (a > X){ b += (a - X + 4) / 5; cb[i] += (a - X + 4) / 5; ca[i] -= (a - X + 4) / 5 * 5; if (ca[i] < 0){ ca[i] = 0; } a -= (a - X + 4) / 5 * 5; if (a < 0){ a = 0; } } if (b > Y){ c += (b - Y + 1) / 2; cc[i] += (b - Y + 1) / 2; cb[i] -= (b - Y + 1) / 2 * 2; if (cb[i] < 0){ cb[i] = 0; } b -= (b - Y + 1) / 2 * 2; if (b < 0){ b = 0; } } if (c > Z){ flg = false; } } for (int i = 0; i < N; i++){ cout << ca[i] << ' ' << cb[i] << ' ' << cc[i] << endl; } if (flg){ cout << "Yes" << endl; } else { cout << "No" << endl; } } }