結果

問題 No.512 魔法少女の追いかけっこ
ユーザー shinwisteriashinwisteria
提出日時 2018-03-13 20:52:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 3,509 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 56,344 KB
最終ジャッジ日時 2024-06-27 06:55:19
合計ジャッジ時間 12,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,088 KB
testcase_01 AC 139 ms
41,556 KB
testcase_02 WA -
testcase_03 AC 142 ms
41,376 KB
testcase_04 AC 157 ms
41,896 KB
testcase_05 AC 141 ms
41,796 KB
testcase_06 AC 138 ms
41,980 KB
testcase_07 AC 136 ms
41,020 KB
testcase_08 AC 135 ms
41,176 KB
testcase_09 AC 141 ms
41,776 KB
testcase_10 AC 134 ms
41,408 KB
testcase_11 WA -
testcase_12 AC 128 ms
40,996 KB
testcase_13 AC 147 ms
42,156 KB
testcase_14 AC 140 ms
41,564 KB
testcase_15 WA -
testcase_16 AC 140 ms
41,624 KB
testcase_17 AC 149 ms
41,552 KB
testcase_18 AC 139 ms
41,672 KB
testcase_19 AC 146 ms
42,016 KB
testcase_20 AC 124 ms
41,144 KB
testcase_21 AC 141 ms
41,872 KB
testcase_22 AC 139 ms
41,600 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 141 ms
41,544 KB
testcase_26 AC 127 ms
40,852 KB
testcase_27 AC 142 ms
41,636 KB
testcase_28 AC 152 ms
41,552 KB
testcase_29 AC 158 ms
42,156 KB
testcase_30 AC 123 ms
40,816 KB
testcase_31 AC 146 ms
42,188 KB
testcase_32 AC 142 ms
41,676 KB
testcase_33 AC 145 ms
41,820 KB
testcase_34 AC 137 ms
41,344 KB
testcase_35 AC 142 ms
41,744 KB
testcase_36 AC 139 ms
41,792 KB
testcase_37 AC 138 ms
41,624 KB
testcase_38 AC 150 ms
41,624 KB
testcase_39 AC 137 ms
41,648 KB
testcase_40 WA -
testcase_41 AC 127 ms
41,008 KB
testcase_42 AC 145 ms
41,588 KB
testcase_43 AC 140 ms
41,800 KB
testcase_44 AC 159 ms
42,892 KB
testcase_45 AC 140 ms
41,736 KB
testcase_46 AC 140 ms
41,624 KB
testcase_47 WA -
testcase_48 AC 140 ms
41,740 KB
testcase_49 AC 138 ms
41,408 KB
testcase_50 AC 137 ms
41,928 KB
testcase_51 AC 138 ms
41,628 KB
testcase_52 AC 145 ms
41,640 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();
		int[] a = new int[n];
		for(int i = 0;i < n;i++){
			a[i] = s.nextInt();
		}
		s.close();

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

	}

}
0