結果

問題 No.512 魔法少女の追いかけっこ
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-05 22:32:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,125 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 50,456 KB
最終ジャッジ日時 2024-06-27 05:56:40
合計ジャッジ時間 6,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,008 KB
testcase_01 AC 49 ms
36,624 KB
testcase_02 AC 49 ms
36,932 KB
testcase_03 AC 49 ms
36,720 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 50 ms
36,988 KB
testcase_07 AC 49 ms
36,800 KB
testcase_08 AC 49 ms
36,612 KB
testcase_09 WA -
testcase_10 AC 50 ms
36,936 KB
testcase_11 AC 49 ms
36,736 KB
testcase_12 AC 49 ms
36,956 KB
testcase_13 AC 51 ms
36,456 KB
testcase_14 AC 51 ms
37,004 KB
testcase_15 AC 50 ms
36,780 KB
testcase_16 AC 51 ms
36,752 KB
testcase_17 AC 51 ms
36,884 KB
testcase_18 AC 51 ms
36,972 KB
testcase_19 WA -
testcase_20 AC 53 ms
37,024 KB
testcase_21 AC 52 ms
37,024 KB
testcase_22 AC 52 ms
37,004 KB
testcase_23 AC 51 ms
36,868 KB
testcase_24 AC 51 ms
36,788 KB
testcase_25 AC 52 ms
36,628 KB
testcase_26 AC 52 ms
36,836 KB
testcase_27 AC 52 ms
36,848 KB
testcase_28 AC 52 ms
37,024 KB
testcase_29 AC 53 ms
36,492 KB
testcase_30 AC 51 ms
36,796 KB
testcase_31 AC 51 ms
36,940 KB
testcase_32 AC 52 ms
36,704 KB
testcase_33 AC 52 ms
36,988 KB
testcase_34 AC 52 ms
36,972 KB
testcase_35 AC 53 ms
36,972 KB
testcase_36 AC 53 ms
36,972 KB
testcase_37 AC 51 ms
36,776 KB
testcase_38 AC 51 ms
36,632 KB
testcase_39 AC 50 ms
36,784 KB
testcase_40 AC 49 ms
37,076 KB
testcase_41 AC 49 ms
37,024 KB
testcase_42 AC 51 ms
37,204 KB
testcase_43 AC 49 ms
37,024 KB
testcase_44 AC 49 ms
36,980 KB
testcase_45 AC 49 ms
36,848 KB
testcase_46 AC 49 ms
36,504 KB
testcase_47 WA -
testcase_48 AC 50 ms
36,508 KB
testcase_49 AC 50 ms
36,960 KB
testcase_50 AC 52 ms
36,884 KB
testcase_51 WA -
testcase_52 AC 49 ms
37,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

import static java.lang.System.in;

public class Main {

    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int X = Integer.parseInt(inputs[0]);
        int Y = Integer.parseInt(inputs[1]);
        double X1 = X * 1000 / 3600.0;
        double Y1 = Y * 1000 / 3600.0;


        int N = Integer.parseInt(reader.readLine());
        inputs = reader.readLine().split(" ");
        boolean result = true;
        for (int i = 0; i < N - 1; i++) {
            int first = Integer.parseInt(inputs[i]);
            int second = Integer.parseInt(inputs[i + 1]);

            double tmp = (double) first / X1;
            if (tmp * Y1 > second) {
                result = false;
                break;
            }
        }
        if(result) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }

}
0