結果

問題 No.396 クラス替え
ユーザー kano_townkano_town
提出日時 2016-07-15 23:16:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 3,345 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 56,304 KB
最終ジャッジ日時 2024-10-15 04:43:37
合計ジャッジ時間 7,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,648 KB
testcase_01 AC 132 ms
54,076 KB
testcase_02 AC 131 ms
53,924 KB
testcase_03 AC 131 ms
54,116 KB
testcase_04 AC 133 ms
53,844 KB
testcase_05 AC 136 ms
54,072 KB
testcase_06 AC 132 ms
54,096 KB
testcase_07 AC 140 ms
54,068 KB
testcase_08 AC 156 ms
54,108 KB
testcase_09 AC 416 ms
54,100 KB
testcase_10 AC 135 ms
53,892 KB
testcase_11 AC 132 ms
54,060 KB
testcase_12 AC 136 ms
54,028 KB
testcase_13 AC 136 ms
53,972 KB
testcase_14 AC 132 ms
54,116 KB
testcase_15 AC 130 ms
56,304 KB
testcase_16 WA -
testcase_17 AC 132 ms
54,208 KB
testcase_18 AC 131 ms
54,260 KB
testcase_19 AC 134 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder396 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long N = sc.nextLong();
        long M = sc.nextLong();
        long X = sc.nextLong();
        long Y = sc.nextLong();
        boolean flip = false;

        long buf = X;
        while (buf > 0) {
            buf -= M * 2;
        }
        buf += M * 2;
        if (buf > M) {
            buf = M * 2 - buf + 1;
        }

        long add1 = (M - buf) * 2 + 1;
        long add2 = M * 2 - add1;

        while (buf < N) {
            if (buf == Y) {
                System.out.println("YES");
                return;
            }
            if (!flip) {
                buf += add1;
                flip = !flip;
            } else {
                buf += add2;
                flip = !flip;
            }
        }

        System.out.println("NO");
    }
}
0