結果

問題 No.396 クラス替え
ユーザー kano_townkano_town
提出日時 2016-07-15 23:08:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 921 bytes
コンパイル時間 3,399 ms
コンパイル使用メモリ 78,276 KB
実行使用メモリ 54,548 KB
最終ジャッジ日時 2024-10-15 04:42:45
合計ジャッジ時間 7,116 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,680 KB
testcase_01 AC 132 ms
53,996 KB
testcase_02 AC 134 ms
54,040 KB
testcase_03 WA -
testcase_04 AC 133 ms
54,100 KB
testcase_05 WA -
testcase_06 AC 132 ms
54,080 KB
testcase_07 AC 142 ms
53,864 KB
testcase_08 AC 152 ms
54,096 KB
testcase_09 AC 354 ms
53,828 KB
testcase_10 AC 133 ms
54,016 KB
testcase_11 AC 134 ms
54,260 KB
testcase_12 AC 132 ms
53,916 KB
testcase_13 AC 134 ms
53,936 KB
testcase_14 AC 136 ms
54,096 KB
testcase_15 AC 134 ms
54,068 KB
testcase_16 AC 131 ms
54,096 KB
testcase_17 AC 133 ms
53,836 KB
testcase_18 WA -
testcase_19 AC 132 ms
53,808 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();

        long buf = X;
        while (buf > 0) {
            buf -= M * 2;
        }
        buf += M * 2;
        if (buf > M )   buf = (buf - M) * 2 - 1;
        
        boolean flip = false;
        long add1 = (M - buf) * 2 + 1;
        long add2 = M * 2 - add1;
        
        while (buf < N) {
            if (!flip) {
                buf += add1;
                flip = !flip;
            } else {
                buf += add2;    
                flip = !flip;
            }
            if (buf == Y) {
                System.out.println("YES");
                return;
            }
        }

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