結果

問題 No.512 魔法少女の追いかけっこ
ユーザー akitsu818
提出日時 2017-05-05 23:13:03
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-06-27 06:13:24
合計ジャッジ時間 10,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 37 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String args[]){

		Scanner cin = new Scanner(System.in);

		int X = cin.nextInt();
		int Y = cin.nextInt();
		int N = cin.nextInt();
		int A[] = new int[N];
		boolean result = true;
		double rate = Y/X;

		for(int i=1;i<=N;i++){
			A[i-1] = cin.nextInt();
			if(i>1){
				if((double)(A[i-2])*rate>(double)A[i-1]){
					result = false;
					break;
				}
			}
		}

		if(result){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}
}
0