結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,124 KB
testcase_01 AC 53 ms
50,156 KB
testcase_02 AC 53 ms
50,292 KB
testcase_03 WA -
testcase_04 AC 52 ms
50,100 KB
testcase_05 WA -
testcase_06 AC 53 ms
50,220 KB
testcase_07 AC 53 ms
49,924 KB
testcase_08 AC 52 ms
50,068 KB
testcase_09 WA -
testcase_10 AC 52 ms
50,176 KB
testcase_11 WA -
testcase_12 AC 52 ms
50,212 KB
testcase_13 AC 53 ms
50,096 KB
testcase_14 AC 53 ms
50,124 KB
testcase_15 AC 53 ms
50,140 KB
testcase_16 AC 53 ms
49,916 KB
testcase_17 AC 55 ms
49,872 KB
testcase_18 AC 53 ms
50,360 KB
testcase_19 AC 55 ms
50,408 KB
testcase_20 WA -
testcase_21 AC 54 ms
50,192 KB
testcase_22 AC 54 ms
50,232 KB
testcase_23 WA -
testcase_24 AC 56 ms
50,380 KB
testcase_25 AC 55 ms
49,868 KB
testcase_26 AC 54 ms
50,196 KB
testcase_27 AC 53 ms
50,160 KB
testcase_28 AC 54 ms
50,216 KB
testcase_29 AC 54 ms
50,316 KB
testcase_30 AC 55 ms
50,348 KB
testcase_31 AC 52 ms
50,260 KB
testcase_32 AC 53 ms
50,072 KB
testcase_33 AC 54 ms
50,212 KB
testcase_34 AC 53 ms
50,192 KB
testcase_35 AC 53 ms
50,440 KB
testcase_36 AC 53 ms
50,284 KB
testcase_37 AC 53 ms
50,088 KB
testcase_38 AC 53 ms
50,256 KB
testcase_39 AC 53 ms
50,008 KB
testcase_40 WA -
testcase_41 AC 53 ms
50,280 KB
testcase_42 AC 52 ms
50,276 KB
testcase_43 AC 52 ms
50,248 KB
testcase_44 AC 55 ms
49,944 KB
testcase_45 AC 55 ms
49,968 KB
testcase_46 AC 52 ms
50,048 KB
testcase_47 AC 53 ms
50,280 KB
testcase_48 WA -
testcase_49 AC 51 ms
49,908 KB
testcase_50 AC 52 ms
50,244 KB
testcase_51 AC 52 ms
50,324 KB
testcase_52 AC 53 ms
50,320 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 / 360.0;
        double Y1 = Y * 1000 / 360.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