結果

問題 No.512 魔法少女の追いかけっこ
ユーザー YamaKasaYamaKasa
提出日時 2018-06-01 17:59:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 54,720 KB
最終ジャッジ日時 2024-06-30 08:51:44
合計ジャッジ時間 10,751 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,412 KB
testcase_01 AC 130 ms
41,528 KB
testcase_02 WA -
testcase_03 AC 133 ms
41,344 KB
testcase_04 WA -
testcase_05 AC 134 ms
41,396 KB
testcase_06 AC 134 ms
41,484 KB
testcase_07 AC 140 ms
41,780 KB
testcase_08 AC 137 ms
41,264 KB
testcase_09 WA -
testcase_10 AC 141 ms
41,516 KB
testcase_11 AC 134 ms
41,308 KB
testcase_12 AC 141 ms
41,876 KB
testcase_13 AC 145 ms
41,624 KB
testcase_14 AC 140 ms
41,776 KB
testcase_15 AC 118 ms
40,196 KB
testcase_16 AC 143 ms
41,652 KB
testcase_17 AC 126 ms
40,668 KB
testcase_18 AC 130 ms
41,692 KB
testcase_19 AC 140 ms
41,344 KB
testcase_20 AC 117 ms
40,204 KB
testcase_21 AC 140 ms
41,560 KB
testcase_22 AC 127 ms
41,244 KB
testcase_23 AC 127 ms
41,436 KB
testcase_24 WA -
testcase_25 AC 117 ms
40,284 KB
testcase_26 AC 146 ms
41,440 KB
testcase_27 AC 134 ms
41,452 KB
testcase_28 AC 117 ms
40,140 KB
testcase_29 AC 137 ms
41,644 KB
testcase_30 AC 137 ms
41,652 KB
testcase_31 AC 137 ms
41,520 KB
testcase_32 AC 137 ms
41,388 KB
testcase_33 AC 139 ms
41,772 KB
testcase_34 AC 142 ms
41,788 KB
testcase_35 AC 135 ms
41,200 KB
testcase_36 AC 125 ms
41,256 KB
testcase_37 AC 129 ms
41,564 KB
testcase_38 AC 136 ms
41,772 KB
testcase_39 AC 134 ms
41,708 KB
testcase_40 AC 136 ms
41,356 KB
testcase_41 AC 130 ms
41,228 KB
testcase_42 AC 140 ms
41,776 KB
testcase_43 AC 125 ms
41,240 KB
testcase_44 AC 138 ms
41,760 KB
testcase_45 AC 133 ms
41,216 KB
testcase_46 AC 139 ms
41,820 KB
testcase_47 WA -
testcase_48 AC 128 ms
41,352 KB
testcase_49 AC 118 ms
40,668 KB
testcase_50 AC 133 ms
41,576 KB
testcase_51 AC 126 ms
41,488 KB
testcase_52 AC 141 ms
41,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int X = scan.nextInt();
		int Y = scan.nextInt();
		int N = scan.nextInt();
		int []A = new int[N];
		for(int i = 0; i < N; i++) {
			A[i] = scan.nextInt();
		}
		scan.close();
		for(int i = 0; i < N - 1; i++) {
			double t = (double)A[i] / X;
			double l = (double)Y * t;

			if(l > A[i + 1]) {
				System.out.println("NO");
				System.exit(0);
			}
		}
		System.out.println("YES");

	}
}
0