結果
問題 |
No.512 魔法少女の追いかけっこ
|
ユーザー |
![]() |
提出日時 | 2017-05-05 22:33:52 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 568 bytes |
コンパイル時間 | 1,217 ms |
コンパイル使用メモリ | 157,660 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 05:57:23 |
合計ジャッジ時間 | 2,591 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 45 WA * 8 |
ソースコード
#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; x = x / (60); y = y / (60); int n; cin >> n; double a[n]; for (int i = 0; i < n; i++) { double tmp; cin >> tmp; a[i] = (tmp*60)/1000; } 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; }