結果

問題 No.512 魔法少女の追いかけっこ
ユーザー tsunabittsunabit
提出日時 2019-06-13 01:18:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 3,550 ms
コンパイル使用メモリ 74,788 KB
実行使用メモリ 56,332 KB
最終ジャッジ日時 2024-10-12 04:51:12
合計ジャッジ時間 14,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
54,220 KB
testcase_01 AC 148 ms
54,084 KB
testcase_02 AC 158 ms
54,116 KB
testcase_03 AC 154 ms
54,064 KB
testcase_04 AC 157 ms
54,200 KB
testcase_05 AC 148 ms
54,272 KB
testcase_06 AC 150 ms
54,160 KB
testcase_07 AC 152 ms
54,124 KB
testcase_08 AC 154 ms
54,212 KB
testcase_09 AC 151 ms
53,980 KB
testcase_10 AC 205 ms
54,228 KB
testcase_11 AC 158 ms
53,996 KB
testcase_12 AC 156 ms
54,360 KB
testcase_13 AC 162 ms
54,000 KB
testcase_14 AC 158 ms
54,280 KB
testcase_15 AC 153 ms
54,312 KB
testcase_16 AC 151 ms
54,180 KB
testcase_17 AC 157 ms
54,196 KB
testcase_18 AC 148 ms
54,344 KB
testcase_19 AC 155 ms
54,192 KB
testcase_20 AC 153 ms
54,336 KB
testcase_21 AC 154 ms
54,344 KB
testcase_22 AC 148 ms
53,956 KB
testcase_23 AC 157 ms
54,020 KB
testcase_24 AC 161 ms
54,356 KB
testcase_25 AC 149 ms
54,480 KB
testcase_26 AC 162 ms
54,124 KB
testcase_27 AC 153 ms
54,264 KB
testcase_28 AC 152 ms
54,192 KB
testcase_29 AC 162 ms
54,104 KB
testcase_30 AC 154 ms
54,220 KB
testcase_31 AC 160 ms
54,156 KB
testcase_32 AC 158 ms
54,444 KB
testcase_33 AC 162 ms
54,348 KB
testcase_34 AC 158 ms
53,948 KB
testcase_35 AC 151 ms
54,188 KB
testcase_36 AC 149 ms
54,228 KB
testcase_37 AC 148 ms
54,168 KB
testcase_38 AC 172 ms
54,060 KB
testcase_39 AC 153 ms
54,308 KB
testcase_40 AC 154 ms
54,076 KB
testcase_41 AC 149 ms
54,200 KB
testcase_42 AC 153 ms
54,132 KB
testcase_43 AC 158 ms
54,092 KB
testcase_44 AC 162 ms
54,160 KB
testcase_45 AC 155 ms
54,324 KB
testcase_46 WA -
testcase_47 AC 154 ms
54,284 KB
testcase_48 AC 149 ms
54,260 KB
testcase_49 AC 148 ms
54,084 KB
testcase_50 AC 149 ms
54,328 KB
testcase_51 AC 155 ms
54,188 KB
testcase_52 AC 156 ms
54,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No512 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	double x = sc.nextDouble() * 1000 / 3600, y = sc.nextDouble() * 1000 / 3600;
    	int n = sc.nextInt();
    	int[] a = new int[n];
    	
    	for(int i = 0; i < n; i++) {
    		a[i] = sc.nextInt();
    	}
    	for(int i = 0; i < n - 1; i++) {
    		double j = a[i] / x;
//    		System.out.println("j = " + j + ": j * y = " + (j * y));
    		if((int)(y * j) > a[i + 1]) {
    			System.out.println("NO");
    			return;
    		}
    	}
    	System.out.println("YES");
    }
}
0