結果
| 問題 |
No.842 初詣
|
| コンテスト | |
| ユーザー |
a
|
| 提出日時 | 2019-06-29 22:02:18 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 352 bytes |
| コンパイル時間 | 1,538 ms |
| コンパイル使用メモリ | 167,416 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-02 05:41:16 |
| 合計ジャッジ時間 | 2,305 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 WA * 10 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
void solve(void)
{
int cs[7];
for (int i = 0; i < 7; i++)
{
cin >> cs[i];
}
for (int i = 0; i < 6; i++)
{
if (cs[i])
{
int x = cs[6] / cs[i];
cs[6] -= x * cs[i];
}
}
cout << (cs[6] ? "NO" : "YES") << endl;
}
int main()
{
solve();
//cout << "yui(*-v・)yui" << endl;
return 0;
}
a