結果

問題 No.512 魔法少女の追いかけっこ
ユーザー te-sh
提出日時 2018-01-24 16:41:01
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 747 ms
コンパイル使用メモリ 97,764 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 23:37:15
合計ジャッジ時間 2,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 53
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void readV(T...)(ref T t){auto r=readln.splitter;foreach(ref v;t){v=r.front.to!(typeof(v));r.popFront;}}
T[] readArray(T)(size_t n){auto a=new T[](n),r=readln.splitter;foreach(ref v;a){v=r.front.to!T;r.popFront;}return a;}
T[] readArrayM(T)(size_t n){auto a=new T[](n);foreach(ref v;a)v=readln.chomp.to!T;return a;}

void main()
{
  int x, y; readV(x, y);
  int n; readV(n);
  auto a = readArray!int(n);

  foreach (i; 0..n-1) {
    if (y*a[i] > x*a[i+1]) {
      writeln("NO");
      return;
    }
  }

  writeln("YES");
}
0