結果
| 問題 |
No.512 魔法少女の追いかけっこ
|
| コンテスト | |
| ユーザー |
nak3
|
| 提出日時 | 2017-05-05 22:42:56 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 697 bytes |
| コンパイル時間 | 1,233 ms |
| コンパイル使用メモリ | 157,552 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-27 06:01:27 |
| 合計ジャッジ時間 | 2,441 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 39 WA * 14 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define INF 2000000000
#define MOD 1000000007
typedef long long ll;
typedef pair<int, int> P;
int main()
{
double x, y;
cin >> x >> y;
int n;
cin >> n;
double ratio = y/x;
double a[n];
for (int i = 0; i < n; i++) {
cin >> a[i];
if (i==0) {
continue;
}
if (ratio>(a[i]/a[i-1])) {
cout << "NO" << "\n";
return 0;
}
cout << "YES" << "\n";
return 0;
}
// for (int i = 0; i < n-1; i++) {
// double t = a[i]/x;
// cerr << "d_t: " << t << " " << t*y << endl;
// double shisyo = t * y;
// if (shisyo>a[i+1]) {
// cout << "NO" << "\n";
// return 0;
// }
// }
// cout << "YES" << "\n";
// return 0;
}
nak3