結果

問題 No.512 魔法少女の追いかけっこ
ユーザー tentententen
提出日時 2020-10-02 18:35:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-07-16 00:39:02
合計ジャッジ時間 9,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,988 KB
testcase_01 WA -
testcase_02 AC 129 ms
54,152 KB
testcase_03 AC 106 ms
52,892 KB
testcase_04 AC 131 ms
54,120 KB
testcase_05 AC 124 ms
54,132 KB
testcase_06 AC 121 ms
54,040 KB
testcase_07 AC 120 ms
53,948 KB
testcase_08 AC 113 ms
52,864 KB
testcase_09 WA -
testcase_10 AC 125 ms
54,148 KB
testcase_11 AC 112 ms
52,900 KB
testcase_12 AC 117 ms
54,008 KB
testcase_13 AC 117 ms
54,120 KB
testcase_14 AC 109 ms
53,088 KB
testcase_15 AC 121 ms
54,048 KB
testcase_16 AC 121 ms
53,912 KB
testcase_17 AC 118 ms
53,964 KB
testcase_18 AC 117 ms
53,868 KB
testcase_19 WA -
testcase_20 AC 108 ms
52,852 KB
testcase_21 AC 120 ms
54,240 KB
testcase_22 AC 121 ms
54,244 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 116 ms
54,144 KB
testcase_27 AC 123 ms
54,084 KB
testcase_28 AC 124 ms
53,980 KB
testcase_29 AC 117 ms
52,832 KB
testcase_30 AC 120 ms
53,952 KB
testcase_31 AC 130 ms
54,216 KB
testcase_32 AC 124 ms
54,008 KB
testcase_33 AC 117 ms
54,068 KB
testcase_34 AC 119 ms
53,972 KB
testcase_35 AC 110 ms
53,000 KB
testcase_36 AC 101 ms
52,356 KB
testcase_37 AC 108 ms
52,992 KB
testcase_38 AC 106 ms
52,716 KB
testcase_39 AC 116 ms
53,916 KB
testcase_40 AC 124 ms
53,888 KB
testcase_41 AC 121 ms
53,888 KB
testcase_42 AC 113 ms
53,600 KB
testcase_43 AC 117 ms
54,292 KB
testcase_44 AC 119 ms
54,232 KB
testcase_45 AC 106 ms
52,952 KB
testcase_46 AC 126 ms
53,980 KB
testcase_47 AC 128 ms
54,200 KB
testcase_48 AC 115 ms
54,112 KB
testcase_49 AC 123 ms
54,032 KB
testcase_50 AC 123 ms
54,044 KB
testcase_51 WA -
testcase_52 AC 128 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double x = sc.nextInt() / 1000.0;
        double y = sc.nextInt() / 1000.0;
        int n = sc.nextInt();
        int prev = sc.nextInt();
        for (int i = 1; i < n; i++) {
            int cur = sc.nextInt();
            if (cur / y < prev / x) {
                System.out.println("NO");
                return;
            }
            prev = cur;
        }
        System.out.println("YES");
    }
}
0