結果

問題 No.512 魔法少女の追いかけっこ
ユーザー GrenacheGrenache
提出日時 2017-05-05 22:24:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 838 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 75,452 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-06-27 05:46:08
合計ジャッジ時間 12,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,740 KB
testcase_01 AC 134 ms
54,184 KB
testcase_02 AC 141 ms
53,988 KB
testcase_03 AC 121 ms
53,088 KB
testcase_04 AC 142 ms
54,316 KB
testcase_05 AC 134 ms
53,848 KB
testcase_06 AC 134 ms
54,024 KB
testcase_07 AC 137 ms
54,268 KB
testcase_08 AC 136 ms
54,132 KB
testcase_09 AC 135 ms
54,320 KB
testcase_10 AC 144 ms
54,252 KB
testcase_11 AC 136 ms
53,968 KB
testcase_12 AC 136 ms
53,932 KB
testcase_13 AC 143 ms
54,088 KB
testcase_14 AC 134 ms
53,988 KB
testcase_15 AC 131 ms
53,884 KB
testcase_16 AC 130 ms
53,724 KB
testcase_17 AC 126 ms
54,220 KB
testcase_18 AC 133 ms
54,196 KB
testcase_19 AC 140 ms
54,304 KB
testcase_20 AC 132 ms
54,044 KB
testcase_21 AC 138 ms
53,852 KB
testcase_22 AC 131 ms
54,152 KB
testcase_23 AC 134 ms
54,176 KB
testcase_24 AC 139 ms
54,212 KB
testcase_25 AC 131 ms
54,236 KB
testcase_26 AC 136 ms
53,896 KB
testcase_27 AC 134 ms
54,040 KB
testcase_28 AC 129 ms
54,080 KB
testcase_29 AC 136 ms
54,160 KB
testcase_30 AC 131 ms
54,156 KB
testcase_31 AC 139 ms
54,116 KB
testcase_32 AC 139 ms
54,112 KB
testcase_33 AC 134 ms
54,004 KB
testcase_34 AC 140 ms
54,136 KB
testcase_35 AC 137 ms
54,236 KB
testcase_36 AC 132 ms
54,124 KB
testcase_37 AC 134 ms
53,904 KB
testcase_38 AC 136 ms
54,192 KB
testcase_39 AC 134 ms
53,844 KB
testcase_40 AC 137 ms
53,992 KB
testcase_41 AC 132 ms
54,016 KB
testcase_42 AC 122 ms
53,220 KB
testcase_43 AC 133 ms
53,832 KB
testcase_44 AC 140 ms
54,260 KB
testcase_45 AC 133 ms
53,960 KB
testcase_46 AC 134 ms
54,084 KB
testcase_47 AC 139 ms
53,844 KB
testcase_48 AC 133 ms
53,884 KB
testcase_49 AC 117 ms
53,080 KB
testcase_50 AC 131 ms
54,108 KB
testcase_51 AC 129 ms
53,868 KB
testcase_52 AC 137 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder512 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int x = sc.nextInt();
		int y = sc.nextInt();
		int n = sc.nextInt();

		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}

		boolean flag = true;
		for (int i = 0; i < n - 1; i++) {
			if (a[i] * y > a[i + 1] * x) {
				flag =false;
				break;
			}
		}

		if (flag) {
			pr.println("YES");
		} else {
			pr.println("NO");
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0