結果
問題 | No.1015 おつりは要らないです |
ユーザー | Y17 |
提出日時 | 2020-04-03 22:28:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,118 bytes |
コンパイル時間 | 1,710 ms |
コンパイル使用メモリ | 174,316 KB |
実行使用メモリ | 11,368 KB |
最終ジャッジ日時 | 2024-07-03 04:28:55 |
合計ジャッジ時間 | 5,871 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 52 ms
5,376 KB |
testcase_11 | AC | 53 ms
5,376 KB |
testcase_12 | AC | 52 ms
5,376 KB |
testcase_13 | AC | 60 ms
5,376 KB |
testcase_14 | AC | 55 ms
5,376 KB |
testcase_15 | AC | 51 ms
5,376 KB |
testcase_16 | AC | 55 ms
5,376 KB |
testcase_17 | AC | 54 ms
5,376 KB |
testcase_18 | AC | 55 ms
5,376 KB |
testcase_19 | AC | 54 ms
5,376 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } signed main(){ int n, x, y, z; cin >> n >> x >> y >> z; priority_queue<int> que; for(int i = 0;i < n;i++){ int a; cin >> a; a++; if(a % 1000 != 0) a += 1000; a /= 1000; que.push(a); } while(!que.empty()){ if(z == 0) break; int a = que.top(); que.pop(); if(a < 10){ z--; }else{ if(a / 10 <= z){ z -= a / 10; if(a % 10 != 0) que.push(a%10); }else{ a -= z * 10; z = 0; que.push(a); } } } while(!que.empty()){ if(y == 0) break; int a = que.top(); que.pop(); if(y < 5){ y--; }else{ if(a / 5 <= y){ y -= a / 5; if(a % 5 != 0) que.push(a%5); }else{ a -= y * 5; y = 0; que.push(a); } } } while(!que.empty()){ int a = que.top(); que.pop(); if(a > x){ cout << "No" << endl; return 0; }else{ x -= a; } } cout << "Yes" << endl; return 0; }