結果

問題 No.512 魔法少女の追いかけっこ
ユーザー kazapyon27kazapyon27
提出日時 2017-05-15 07:02:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 3,455 ms
コンパイル使用メモリ 75,656 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-06-27 06:26:28
合計ジャッジ時間 11,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,620 KB
testcase_01 AC 128 ms
41,492 KB
testcase_02 AC 130 ms
41,368 KB
testcase_03 AC 125 ms
41,012 KB
testcase_04 AC 136 ms
41,148 KB
testcase_05 AC 129 ms
41,272 KB
testcase_06 AC 127 ms
41,112 KB
testcase_07 AC 120 ms
40,044 KB
testcase_08 AC 135 ms
41,472 KB
testcase_09 AC 123 ms
41,156 KB
testcase_10 AC 135 ms
41,488 KB
testcase_11 AC 132 ms
41,320 KB
testcase_12 AC 131 ms
41,352 KB
testcase_13 AC 139 ms
41,560 KB
testcase_14 AC 127 ms
41,168 KB
testcase_15 AC 129 ms
41,488 KB
testcase_16 AC 129 ms
41,268 KB
testcase_17 AC 126 ms
41,440 KB
testcase_18 AC 128 ms
41,204 KB
testcase_19 AC 136 ms
41,512 KB
testcase_20 AC 117 ms
40,472 KB
testcase_21 AC 138 ms
41,800 KB
testcase_22 AC 126 ms
41,236 KB
testcase_23 AC 125 ms
41,236 KB
testcase_24 AC 132 ms
41,384 KB
testcase_25 AC 132 ms
41,396 KB
testcase_26 AC 122 ms
39,936 KB
testcase_27 AC 131 ms
41,464 KB
testcase_28 AC 114 ms
40,208 KB
testcase_29 AC 135 ms
41,496 KB
testcase_30 AC 116 ms
40,052 KB
testcase_31 AC 135 ms
41,368 KB
testcase_32 AC 138 ms
41,324 KB
testcase_33 AC 133 ms
41,404 KB
testcase_34 AC 133 ms
41,744 KB
testcase_35 AC 120 ms
40,224 KB
testcase_36 AC 127 ms
41,364 KB
testcase_37 AC 127 ms
41,228 KB
testcase_38 AC 122 ms
40,432 KB
testcase_39 AC 129 ms
41,452 KB
testcase_40 AC 132 ms
41,376 KB
testcase_41 AC 115 ms
39,924 KB
testcase_42 AC 131 ms
41,104 KB
testcase_43 AC 122 ms
41,208 KB
testcase_44 AC 132 ms
41,496 KB
testcase_45 AC 127 ms
41,464 KB
testcase_46 WA -
testcase_47 AC 136 ms
41,552 KB
testcase_48 AC 125 ms
41,308 KB
testcase_49 AC 122 ms
41,012 KB
testcase_50 AC 116 ms
40,908 KB
testcase_51 AC 124 ms
41,420 KB
testcase_52 AC 134 ms
41,472 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=(int)(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