結果

問題 No.512 魔法少女の追いかけっこ
ユーザー kazapyon27kazapyon27
提出日時 2017-05-24 01:03:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,088 bytes
コンパイル時間 3,403 ms
コンパイル使用メモリ 78,920 KB
実行使用メモリ 37,588 KB
最終ジャッジ日時 2024-06-27 06:29:31
合計ジャッジ時間 7,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,116 KB
testcase_01 AC 51 ms
37,440 KB
testcase_02 AC 50 ms
37,300 KB
testcase_03 AC 52 ms
37,496 KB
testcase_04 AC 53 ms
37,208 KB
testcase_05 AC 52 ms
37,020 KB
testcase_06 AC 51 ms
37,396 KB
testcase_07 WA -
testcase_08 AC 51 ms
37,464 KB
testcase_09 AC 51 ms
37,292 KB
testcase_10 AC 51 ms
37,360 KB
testcase_11 AC 53 ms
37,268 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 52 ms
37,120 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 51 ms
37,268 KB
testcase_20 AC 51 ms
37,236 KB
testcase_21 WA -
testcase_22 AC 52 ms
37,268 KB
testcase_23 AC 53 ms
37,236 KB
testcase_24 AC 51 ms
37,356 KB
testcase_25 AC 51 ms
37,144 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 54 ms
37,236 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 51 ms
37,372 KB
testcase_32 AC 52 ms
37,196 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 52 ms
37,484 KB
testcase_36 AC 52 ms
37,536 KB
testcase_37 AC 53 ms
37,588 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 52 ms
37,452 KB
testcase_41 AC 51 ms
37,308 KB
testcase_42 WA -
testcase_43 AC 50 ms
37,492 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 53 ms
37,456 KB
testcase_48 AC 53 ms
37,236 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 51 ms
37,448 KB
testcase_52 AC 51 ms
37,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.512 魔法少女の追いかけっこ*/
import java.io.*;
import java.math.*;
import java.util.*;
public class No512 {
	public static ArrayList<BigDecimal> prepare(String a){
		String []H_a =a.split(" ");
		ArrayList<BigDecimal> al = new ArrayList<BigDecimal>(); 
		for(int i=0;i<H_a.length;i++){
			al.add(new BigDecimal(H_a[i]));
		}
		return al;
	}
	public static void main(String[] args) {
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			ArrayList<BigDecimal> Speed = No512.prepare(input.readLine());
			ArrayList<BigDecimal> Distance = No512.prepare(input.readLine());
			boolean chase=true;
			for(int i=0;i<Distance.size()-1;i++){
				BigDecimal rapTime=Distance.get(i).divide(Speed.get(0),6,RoundingMode.DOWN);
				BigDecimal rapPoint=Speed.get(1).multiply(rapTime).setScale(2, RoundingMode.DOWN);
				if(rapPoint.compareTo(Distance.get(i+1))==1){
					chase=false;
					break;
				}
			}
			if(chase){
				System.out.println("YES");
			}else{
				System.out.println("NO");
			}			
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0