結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,028 KB
testcase_01 AC 128 ms
54,076 KB
testcase_02 AC 142 ms
54,252 KB
testcase_03 WA -
testcase_04 AC 137 ms
54,264 KB
testcase_05 AC 130 ms
54,080 KB
testcase_06 AC 121 ms
52,976 KB
testcase_07 WA -
testcase_08 AC 129 ms
54,004 KB
testcase_09 AC 133 ms
54,228 KB
testcase_10 AC 141 ms
54,176 KB
testcase_11 AC 133 ms
53,880 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 133 ms
54,152 KB
testcase_16 AC 130 ms
54,356 KB
testcase_17 WA -
testcase_18 AC 132 ms
54,056 KB
testcase_19 AC 140 ms
54,188 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 AC 129 ms
54,252 KB
testcase_23 WA -
testcase_24 AC 136 ms
54,128 KB
testcase_25 AC 130 ms
53,944 KB
testcase_26 AC 135 ms
54,024 KB
testcase_27 WA -
testcase_28 AC 131 ms
54,192 KB
testcase_29 AC 136 ms
54,160 KB
testcase_30 WA -
testcase_31 AC 142 ms
54,020 KB
testcase_32 AC 137 ms
54,200 KB
testcase_33 WA -
testcase_34 AC 136 ms
54,116 KB
testcase_35 AC 130 ms
54,036 KB
testcase_36 AC 128 ms
54,128 KB
testcase_37 AC 130 ms
53,928 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 136 ms
54,108 KB
testcase_41 AC 120 ms
53,140 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 133 ms
54,180 KB
testcase_46 WA -
testcase_47 AC 135 ms
54,196 KB
testcase_48 AC 128 ms
54,236 KB
testcase_49 AC 127 ms
54,488 KB
testcase_50 RE -
testcase_51 AC 133 ms
54,180 KB
testcase_52 AC 137 ms
54,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int student = sc.nextInt()*1000/3600;
		int teacher = sc.nextInt()*1000/3600;
		int n = sc.nextInt();
		int[] intersection = new int[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