結果
問題 |
No.842 初詣
|
ユーザー |
![]() |
提出日時 | 2019-06-29 22:06:19 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 374 bytes |
コンパイル時間 | 1,636 ms |
コンパイル使用メモリ | 168,072 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 05:41:27 |
合計ジャッジ時間 | 2,455 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include "bits/stdc++.h" using namespace std; void solve(void) { int cs[7], ds[] = {500, 100, 50, 10, 5, 1}; for (int i = 0; i < 7; i++) { cin >> cs[i]; } for (int i = 0; i < 6; i++) { int x = min(cs[6] / ds[i], cs[i]); cs[6] -= x * ds[i]; } cout << (cs[6] ? "NO" : "YES") << endl; } int main() { solve(); //cout << "yui(*-v・)yui" << endl; return 0; }