結果
問題 | No.512 魔法少女の追いかけっこ |
ユーザー |
![]() |
提出日時 | 2017-05-05 22:23:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 588 bytes |
コンパイル時間 | 1,589 ms |
コンパイル使用メモリ | 167,356 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-27 05:44:17 |
合計ジャッジ時間 | 2,901 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 53 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define FOR(i,l,r) for(int i = (int) (l);i < (int) (r);i++)#define ALL(x) x.begin(),x.end()template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; }template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; }typedef long long ll;int X,Y,N;int main(){scanf("%d%d%d",&X,&Y,&N);vector<int> A(N);FOR(i,0,N){scanf("%d",&A [i]);}bool ans = true;FOR(i,1,N){if(A [i - 1] * Y > A [i] * X){ans = false;}}printf("%s\n",ans ? "YES" : "NO");return 0;}