結果

問題 No.512 魔法少女の追いかけっこ
ユーザー akitsu818
提出日時 2017-05-05 22:58:01
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 56,380 KB
最終ジャッジ日時 2024-06-27 06:09:25
合計ジャッジ時間 10,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 36 WA * 17
権限があれば一括ダウンロードができます

ソースコード

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];
		long sum = 0L;
		boolean result = true;
		double rate = (Y-X)/X;

		for(int i=1;i<=N;i++){
			A[i-1] = cin.nextInt();
			if(i>1){
				if(sum*rate>(double)A[i-1]){
					result = false;
					break;
				}
			}
			sum += (long)A[i-1];
		}
		
		if(result){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}
}
0