結果

問題 No.512 魔法少女の追いかけっこ
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-17 17:08:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 3,729 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 42,332 KB
最終ジャッジ日時 2024-06-27 06:52:49
合計ジャッジ時間 11,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,776 KB
testcase_01 AC 140 ms
41,892 KB
testcase_02 AC 149 ms
41,748 KB
testcase_03 AC 142 ms
41,928 KB
testcase_04 WA -
testcase_05 AC 142 ms
41,672 KB
testcase_06 AC 140 ms
41,568 KB
testcase_07 AC 148 ms
41,796 KB
testcase_08 AC 141 ms
41,672 KB
testcase_09 WA -
testcase_10 AC 146 ms
42,332 KB
testcase_11 AC 140 ms
41,852 KB
testcase_12 AC 128 ms
40,788 KB
testcase_13 AC 145 ms
41,664 KB
testcase_14 AC 141 ms
41,688 KB
testcase_15 AC 127 ms
40,876 KB
testcase_16 AC 140 ms
41,852 KB
testcase_17 AC 143 ms
41,796 KB
testcase_18 AC 141 ms
41,660 KB
testcase_19 WA -
testcase_20 AC 139 ms
41,600 KB
testcase_21 AC 143 ms
41,936 KB
testcase_22 AC 138 ms
41,500 KB
testcase_23 AC 137 ms
41,532 KB
testcase_24 AC 145 ms
42,276 KB
testcase_25 AC 136 ms
40,960 KB
testcase_26 AC 142 ms
42,020 KB
testcase_27 AC 142 ms
41,788 KB
testcase_28 AC 131 ms
41,004 KB
testcase_29 AC 144 ms
41,520 KB
testcase_30 AC 142 ms
41,548 KB
testcase_31 AC 149 ms
41,768 KB
testcase_32 AC 146 ms
41,816 KB
testcase_33 AC 144 ms
41,772 KB
testcase_34 AC 145 ms
42,124 KB
testcase_35 AC 142 ms
41,776 KB
testcase_36 AC 137 ms
41,492 KB
testcase_37 AC 140 ms
41,360 KB
testcase_38 AC 145 ms
41,756 KB
testcase_39 AC 142 ms
41,632 KB
testcase_40 AC 147 ms
41,668 KB
testcase_41 AC 139 ms
42,052 KB
testcase_42 AC 137 ms
41,432 KB
testcase_43 AC 136 ms
41,156 KB
testcase_44 AC 154 ms
41,688 KB
testcase_45 AC 140 ms
41,800 KB
testcase_46 AC 144 ms
41,800 KB
testcase_47 AC 141 ms
41,764 KB
testcase_48 AC 138 ms
41,716 KB
testcase_49 AC 138 ms
41,628 KB
testcase_50 AC 136 ms
41,280 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		double student = sc.nextDouble()*1000/3600;
		double teacher = sc.nextDouble()*1000/3600;
		int n = sc.nextInt();
		double[] intersection = new double[n];
		for (int i=0; i<n; i++) {
			intersection[i] = sc.nextInt();
		}
		
		boolean F = true;
		for (int i=0; i<n-1; i++) {
			if (intersection[i]*teacher > intersection[i+1]*student) {F = false;}
		}
		
		System.out.println(F==true?"YES":"NO");
	}
}
0