結果
問題 | No.842 初詣 |
ユーザー | closekn |
提出日時 | 2019-06-28 21:52:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 501 bytes |
コンパイル時間 | 1,651 ms |
コンパイル使用メモリ | 167,060 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 04:39:36 |
合計ジャッジ時間 | 2,364 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int a, b, c, d, e, f, g; cin >> a >> b >> c >> d >> e >> f >> g; while ( g >= 500 && a > 0 ) { g -= 500; a--; } while ( g >= 100 && b > 0 ) { g -= 100; b--; } while ( g >= 50 && c > 0 ) { g -= 50; c--; } while ( g >= 10 && d > 0 ) { g -= 10; d--; } while ( g >= 5 && e > 0 ) { g -= 5; e--; } while ( g >= 1 && f > 0 ) { g -= 1; f--; } string ans = ( g == 0 ) ? "YES" : "NO"; cout << ans << endl; return 0; }