結果

問題 No.512 魔法少女の追いかけっこ
ユーザー htensaihtensai
提出日時 2019-11-17 18:53:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 41,924 KB
最終ジャッジ日時 2024-09-25 06:03:08
合計ジャッジ時間 9,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,264 KB
testcase_01 AC 98 ms
40,900 KB
testcase_02 AC 121 ms
41,924 KB
testcase_03 AC 115 ms
41,540 KB
testcase_04 AC 117 ms
41,628 KB
testcase_05 AC 104 ms
41,516 KB
testcase_06 AC 98 ms
41,280 KB
testcase_07 AC 114 ms
41,148 KB
testcase_08 AC 114 ms
41,540 KB
testcase_09 AC 116 ms
41,156 KB
testcase_10 AC 124 ms
41,636 KB
testcase_11 AC 104 ms
41,288 KB
testcase_12 AC 97 ms
41,552 KB
testcase_13 AC 108 ms
41,340 KB
testcase_14 AC 99 ms
41,256 KB
testcase_15 AC 112 ms
41,124 KB
testcase_16 AC 109 ms
41,404 KB
testcase_17 AC 113 ms
41,340 KB
testcase_18 AC 101 ms
41,120 KB
testcase_19 AC 119 ms
41,384 KB
testcase_20 AC 113 ms
41,288 KB
testcase_21 AC 110 ms
41,320 KB
testcase_22 AC 101 ms
41,096 KB
testcase_23 AC 114 ms
40,064 KB
testcase_24 AC 119 ms
41,512 KB
testcase_25 AC 103 ms
41,136 KB
testcase_26 AC 135 ms
41,280 KB
testcase_27 AC 115 ms
41,028 KB
testcase_28 AC 110 ms
41,268 KB
testcase_29 AC 96 ms
41,092 KB
testcase_30 AC 108 ms
41,752 KB
testcase_31 AC 122 ms
41,868 KB
testcase_32 AC 119 ms
41,776 KB
testcase_33 AC 106 ms
41,252 KB
testcase_34 AC 106 ms
41,304 KB
testcase_35 AC 126 ms
41,512 KB
testcase_36 AC 101 ms
41,308 KB
testcase_37 AC 114 ms
41,420 KB
testcase_38 AC 109 ms
41,300 KB
testcase_39 AC 100 ms
41,728 KB
testcase_40 AC 120 ms
41,524 KB
testcase_41 AC 99 ms
41,612 KB
testcase_42 AC 110 ms
41,136 KB
testcase_43 AC 100 ms
41,192 KB
testcase_44 AC 100 ms
41,240 KB
testcase_45 AC 112 ms
41,308 KB
testcase_46 AC 99 ms
41,800 KB
testcase_47 AC 117 ms
41,524 KB
testcase_48 AC 116 ms
41,284 KB
testcase_49 AC 117 ms
41,160 KB
testcase_50 AC 117 ms
41,020 KB
testcase_51 AC 102 ms
41,492 KB
testcase_52 AC 120 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		double x = sc.nextInt();
		double y = sc.nextInt();
		int n = sc.nextInt();
		int prev = 0;
		for (int i = 0; i < n; i++) {
		    int now = sc.nextInt();
		    if (now / y < prev / x) {
		        System.out.println("NO");
		        return;
		    }
		    prev = now;
		}
		System.out.println("YES");
	}
}


0