結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,444 KB
testcase_01 AC 139 ms
54,240 KB
testcase_02 AC 155 ms
54,340 KB
testcase_03 AC 146 ms
54,508 KB
testcase_04 WA -
testcase_05 AC 127 ms
53,692 KB
testcase_06 AC 145 ms
54,236 KB
testcase_07 AC 146 ms
54,460 KB
testcase_08 AC 154 ms
53,960 KB
testcase_09 AC 152 ms
54,368 KB
testcase_10 AC 148 ms
54,276 KB
testcase_11 AC 141 ms
54,224 KB
testcase_12 AC 144 ms
54,360 KB
testcase_13 AC 146 ms
54,432 KB
testcase_14 AC 152 ms
54,200 KB
testcase_15 AC 147 ms
54,364 KB
testcase_16 AC 149 ms
54,424 KB
testcase_17 AC 146 ms
54,248 KB
testcase_18 AC 142 ms
54,276 KB
testcase_19 AC 154 ms
54,668 KB
testcase_20 AC 140 ms
54,120 KB
testcase_21 AC 153 ms
54,104 KB
testcase_22 AC 140 ms
54,452 KB
testcase_23 AC 135 ms
53,520 KB
testcase_24 AC 145 ms
54,100 KB
testcase_25 AC 147 ms
54,320 KB
testcase_26 AC 145 ms
54,440 KB
testcase_27 AC 143 ms
54,128 KB
testcase_28 AC 147 ms
54,384 KB
testcase_29 AC 145 ms
54,384 KB
testcase_30 AC 145 ms
54,168 KB
testcase_31 AC 155 ms
54,012 KB
testcase_32 AC 147 ms
54,352 KB
testcase_33 AC 146 ms
54,264 KB
testcase_34 AC 158 ms
54,500 KB
testcase_35 AC 143 ms
54,012 KB
testcase_36 AC 141 ms
54,116 KB
testcase_37 AC 139 ms
53,904 KB
testcase_38 AC 150 ms
54,596 KB
testcase_39 AC 147 ms
54,504 KB
testcase_40 AC 149 ms
54,168 KB
testcase_41 AC 140 ms
54,064 KB
testcase_42 AC 143 ms
54,264 KB
testcase_43 AC 145 ms
54,388 KB
testcase_44 AC 148 ms
54,164 KB
testcase_45 AC 149 ms
54,400 KB
testcase_46 AC 143 ms
54,216 KB
testcase_47 AC 152 ms
54,640 KB
testcase_48 AC 148 ms
54,384 KB
testcase_49 AC 138 ms
54,180 KB
testcase_50 AC 137 ms
54,012 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();
		}
		
		double student_pos = 0;
		double teacher_pos = 0;
		boolean F = true;
		for (int i=0; i<n-1; i++) {
			student_pos = intersection[i];
			teacher_pos = student_pos*(teacher/student);
			if (teacher_pos > intersection[i+1]) {F = false;}
		}
		
		System.out.println(F==true?"YES":"NO");
	}
}
0