結果

問題 No.512 魔法少女の追いかけっこ
ユーザー jjjj
提出日時 2017-05-05 22:25:42
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 32,000 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 05:47:19
合計ジャッジ時間 1,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 53
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer::X,Y,N,i
  integer,allocatable::a(:)
  read *,X,Y
  read *,N
  allocate(a(N))
  read *,a
  do i=2,N
     if(a(i)*X.ge.a(i-1)*y) then
        continue
     else
        print '(a)',"NO"
        return
     end if
  end do
  print '(a)',"YES"
end program main
0