結果
問題 | No.1015 おつりは要らないです |
ユーザー | KKT89 |
提出日時 | 2020-04-03 21:50:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,429 bytes |
コンパイル時間 | 719 ms |
コンパイル使用メモリ | 85,716 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-03 02:11:58 |
合計ジャッジ時間 | 2,567 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
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 | 21 ms
5,376 KB |
testcase_16 | AC | 22 ms
5,376 KB |
testcase_17 | AC | 23 ms
5,376 KB |
testcase_18 | AC | 21 ms
5,376 KB |
testcase_19 | AC | 22 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 | 2 ms
5,376 KB |
testcase_31 | AC | 10 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 16 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <queue> using namespace std; typedef long long ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; ll x,y,z; cin >> x >> y >> z; vector<ll> a(n); bool ok=1; for(int i=0;i<n;i++){ cin >> a[i]; if(a[i]>=10000){ ll p=min(z,(ll)a[i]/10000); z-=p; a[i]-=10000*p; } if(0<=a[i]&&a[i]<1000&&x>0){ x--; a[i]-=1000; } } sort(a.rbegin(),a.rend()); if(z>0){ for(int i=0;i<n;i++){ if(a[i]>=0&&z>0){ a[i]-=10000; z--; }else{ break; } } for(int i=0;i<n;i++){ if(a[i]>=5000){ ll p=min(y,(ll)a[i]/5000); y-=p; a[i]-=5000*p; } if(0<=a[i]&&a[i]<1000&&x>0){ x--; a[i]-=1000; } } }else{ for(int i=0;i<n;i++){ if(a[i]>=5000){ ll p=min(y,(ll)a[i]/5000); y-=p; a[i]-=5000*p; } if(0<=a[i]&&a[i]<1000&&x>0){ x--; a[i]-=1000; } } } sort(a.rbegin(),a.rend()); if(y>0){ for(int i=0;i<n;i++){ if(a[i]>=0&&y>0){ a[i]-=5000; y--; }else{ break; } } for(int i=0;i<n;i++){ if(a[i]<0)continue; ll p=min(x,(a[i]/1000+1)); cout << p << endl; a[i]-=1000*p; x-=p; } }else{ for(int i=0;i<n;i++){ if(a[i]<0)continue; ll p=min(x,(a[i]/1000+1)*1000); a[i]-=1000*p; x-=p; } } for(int i=0;i<n;i++){ if(a[i]>=0)ok=0; } if(ok){ printf("Yes\n"); }else{ printf("No\n"); } }