結果

問題 No.512 魔法少女の追いかけっこ
ユーザー akitsu818akitsu818
提出日時 2017-05-05 23:08:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 539 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 41,744 KB
最終ジャッジ日時 2024-06-27 06:12:40
合計ジャッジ時間 10,306 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
39,808 KB
testcase_01 AC 116 ms
39,960 KB
testcase_02 AC 135 ms
41,508 KB
testcase_03 AC 114 ms
40,132 KB
testcase_04 AC 137 ms
41,204 KB
testcase_05 AC 130 ms
40,948 KB
testcase_06 AC 130 ms
41,352 KB
testcase_07 WA -
testcase_08 AC 136 ms
41,480 KB
testcase_09 WA -
testcase_10 AC 142 ms
41,244 KB
testcase_11 AC 133 ms
41,188 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 129 ms
40,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 135 ms
41,720 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 129 ms
41,200 KB
testcase_23 AC 127 ms
41,300 KB
testcase_24 AC 140 ms
41,316 KB
testcase_25 AC 132 ms
41,360 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 128 ms
41,360 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 133 ms
41,096 KB
testcase_32 AC 138 ms
41,580 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 128 ms
41,112 KB
testcase_36 AC 128 ms
41,452 KB
testcase_37 AC 129 ms
41,300 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 133 ms
41,588 KB
testcase_41 AC 127 ms
41,528 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 134 ms
41,208 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 117 ms
40,676 KB
testcase_51 WA -
testcase_52 AC 132 ms
41,664 KB
権限があれば一括ダウンロードができます

ソースコード

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)/X;

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

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

	}
}
0