結果
問題 |
No.842 初詣
|
ユーザー |
![]() |
提出日時 | 2019-06-29 22:05:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 374 bytes |
コンパイル時間 | 1,643 ms |
コンパイル使用メモリ | 167,836 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 05:41:18 |
合計ジャッジ時間 | 2,245 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 WA * 11 |
ソースコード
#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 * cs[i]; } cout << (cs[6] ? "NO" : "YES") << endl; } int main() { solve(); //cout << "yui(*-v・)yui" << endl; return 0; }