結果
| 問題 | No.842 初詣 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-06-28 21:44:07 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 1,704 bytes | 
| コンパイル時間 | 620 ms | 
| コンパイル使用メモリ | 82,024 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-02 04:32:11 | 
| 合計ジャッジ時間 | 1,496 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 21 | 
ソースコード
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
#include <cmath>
#include <string>
#include <set>
#include <utility>
#include <cstdlib>
#include <queue>
#include <stack>
#include <iomanip>
#include <cstdio>
#include <map>
#include <list>
using namespace std;
typedef long long Int;
typedef pair<Int,Int> P;
#define rep(i,x) for(Int i = 0; i < (Int)(x); i++)
#define rrep(i,x) for(Int i = ((Int)(x) - 1); i >= 0; i--)
#define _upgrade ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define all(x) (x).begin(), (x).end()
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );
#define pb push_back
#define MX 100010
template<class T1, class T2> void chmin(T1 &a, T2 b){if(a>b)a=b;}
template<class T1, class T2> void chmax(T1 &a, T2 b){if(a<b)a=b;}
//ll gcd(ll a, ll b){return b?gcd(b,a%b):a;}
//ll lcm(ll x, ll y) {return x / gcd(x, y) * y;}
Int dx[4] = {1,0,-1,0};
Int dy[4] = {0,1,0,-1};
const Int INF = 1001002003004005006ll;
const Int mod = 1e9 + 7;
const double PI = 3.14159265358979323846;
// ****************************************CODE***************************************//
int main(){
        int a[6];
        int g;
        for(int i = 0; i < 6; i++){
                cin >> a[i];
        }
        cin >> g;
        int coin[6] = {500, 100, 50, 10, 5, 1};
        bool ok = false;
        for(int i = 0; i < 6; i++){
                if(g >= coin[i]){
                        int tmp = min(g/coin[i], a[i]);
                        g -= coin[i]*tmp;
                }
                if(g == 0) ok = true;
        }
        if(ok) cout << "YES" << endl;
        else cout << "NO" << endl;
}
            
            
            
        