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