結果

問題 No.512 魔法少女の追いかけっこ
ユーザー kazapyon27kazapyon27
提出日時 2017-05-15 01:16:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 817 bytes
コンパイル時間 3,314 ms
コンパイル使用メモリ 75,568 KB
実行使用メモリ 54,640 KB
最終ジャッジ日時 2024-06-27 06:25:37
合計ジャッジ時間 11,971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 132 ms
54,036 KB
testcase_04 AC 139 ms
54,176 KB
testcase_05 AC 131 ms
54,224 KB
testcase_06 AC 132 ms
54,072 KB
testcase_07 AC 136 ms
54,384 KB
testcase_08 AC 124 ms
52,904 KB
testcase_09 AC 131 ms
54,148 KB
testcase_10 AC 138 ms
54,356 KB
testcase_11 AC 136 ms
54,192 KB
testcase_12 AC 137 ms
54,344 KB
testcase_13 AC 139 ms
54,440 KB
testcase_14 AC 138 ms
54,120 KB
testcase_15 AC 137 ms
54,196 KB
testcase_16 AC 133 ms
54,132 KB
testcase_17 AC 138 ms
54,316 KB
testcase_18 AC 133 ms
54,156 KB
testcase_19 AC 140 ms
54,640 KB
testcase_20 AC 132 ms
54,248 KB
testcase_21 AC 142 ms
54,272 KB
testcase_22 AC 132 ms
53,860 KB
testcase_23 WA -
testcase_24 AC 139 ms
53,980 KB
testcase_25 AC 121 ms
53,072 KB
testcase_26 AC 137 ms
54,332 KB
testcase_27 AC 134 ms
53,980 KB
testcase_28 AC 129 ms
54,068 KB
testcase_29 AC 135 ms
54,048 KB
testcase_30 AC 131 ms
54,200 KB
testcase_31 AC 137 ms
54,320 KB
testcase_32 AC 138 ms
53,976 KB
testcase_33 AC 135 ms
53,960 KB
testcase_34 AC 139 ms
53,968 KB
testcase_35 AC 135 ms
54,188 KB
testcase_36 AC 131 ms
54,148 KB
testcase_37 AC 128 ms
53,980 KB
testcase_38 AC 136 ms
54,044 KB
testcase_39 AC 135 ms
54,352 KB
testcase_40 AC 141 ms
54,252 KB
testcase_41 AC 134 ms
54,392 KB
testcase_42 AC 137 ms
53,952 KB
testcase_43 WA -
testcase_44 AC 138 ms
54,084 KB
testcase_45 AC 135 ms
54,172 KB
testcase_46 AC 138 ms
54,000 KB
testcase_47 WA -
testcase_48 AC 117 ms
52,916 KB
testcase_49 AC 127 ms
54,220 KB
testcase_50 AC 130 ms
53,988 KB
testcase_51 AC 131 ms
54,428 KB
testcase_52 AC 138 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.512 魔法少女の追いかけっこ*/
import java.util.*;
public class No512 {
	public static void main(String[] args) {
		try(Scanner input =new Scanner(System.in)){
			float speed[]=new float[2];
			float rapTime,rapPoint;
			boolean chase=true;
			for(int i=0;i<speed.length;i++){
				speed[i]=input.nextByte()*1000f/3600f;
			}
			byte Intersection=input.nextByte();
			int interval[]=new int[Intersection];
			for(int i=0;i<Intersection;i++){
				interval[i]=input.nextInt();
			}
			for(int i=0;i<interval.length-1;i++){
				rapTime=interval[i]/speed[0];
				rapPoint=speed[1]*rapTime;
				if(rapPoint>interval[i+1]){
					chase=false;
					break;
				}
			}
			if(chase){
				System.out.println("YES");
			}else{
				System.out.println("NO");
			}
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0