結果

問題 No.512 魔法少女の追いかけっこ
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 21:24:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 3,456 ms
コンパイル使用メモリ 77,284 KB
実行使用メモリ 42,392 KB
最終ジャッジ日時 2024-06-27 06:55:43
合計ジャッジ時間 13,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,556 KB
testcase_01 AC 152 ms
41,796 KB
testcase_02 AC 161 ms
42,160 KB
testcase_03 AC 149 ms
41,876 KB
testcase_04 AC 159 ms
42,056 KB
testcase_05 AC 150 ms
42,072 KB
testcase_06 AC 146 ms
41,768 KB
testcase_07 AC 158 ms
41,936 KB
testcase_08 AC 155 ms
41,976 KB
testcase_09 AC 148 ms
41,460 KB
testcase_10 AC 161 ms
41,892 KB
testcase_11 AC 151 ms
41,668 KB
testcase_12 AC 157 ms
42,024 KB
testcase_13 AC 170 ms
42,276 KB
testcase_14 AC 154 ms
41,920 KB
testcase_15 AC 148 ms
41,460 KB
testcase_16 AC 148 ms
42,380 KB
testcase_17 AC 164 ms
42,192 KB
testcase_18 AC 146 ms
41,608 KB
testcase_19 AC 158 ms
41,920 KB
testcase_20 AC 144 ms
41,812 KB
testcase_21 AC 159 ms
41,916 KB
testcase_22 AC 149 ms
41,520 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 147 ms
41,788 KB
testcase_26 AC 155 ms
42,004 KB
testcase_27 AC 147 ms
41,628 KB
testcase_28 AC 145 ms
41,672 KB
testcase_29 AC 162 ms
42,176 KB
testcase_30 AC 152 ms
41,988 KB
testcase_31 AC 158 ms
42,392 KB
testcase_32 AC 164 ms
42,076 KB
testcase_33 AC 154 ms
41,544 KB
testcase_34 AC 158 ms
42,284 KB
testcase_35 AC 152 ms
41,856 KB
testcase_36 AC 145 ms
41,912 KB
testcase_37 AC 153 ms
41,680 KB
testcase_38 AC 161 ms
42,068 KB
testcase_39 AC 151 ms
41,544 KB
testcase_40 WA -
testcase_41 AC 146 ms
41,420 KB
testcase_42 AC 155 ms
41,504 KB
testcase_43 AC 146 ms
41,524 KB
testcase_44 AC 162 ms
42,000 KB
testcase_45 AC 150 ms
41,764 KB
testcase_46 AC 153 ms
41,640 KB
testcase_47 WA -
testcase_48 AC 148 ms
41,756 KB
testcase_49 AC 146 ms
42,024 KB
testcase_50 AC 144 ms
41,752 KB
testcase_51 AC 145 ms
41,820 KB
testcase_52 AC 170 ms
41,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con512 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		double x = s.nextDouble() * 50 / 3 , y = s.nextDouble() * 50 / 3;
		int n = s.nextInt();
		double[] a = new double[n];
		for(int i = 0;i < n;i++){
			a[i] = s.nextDouble();
		}
		s.close();

		boolean ft = true;
		for(int i = 0;i < n-1;i++){
			if(a[i] / x > a[i+1] / y){
				System.out.println("NO");
				ft = false;
				break;
			}
		}
		if(ft){
			System.out.println("YES");
		}

	}

}
0