結果

問題 No.396 クラス替え
ユーザー crazybbb3crazybbb3
提出日時 2016-11-27 18:19:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,855 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 77,176 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-11-27 12:17:06
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,204 KB
testcase_01 AC 51 ms
36,828 KB
testcase_02 AC 51 ms
37,084 KB
testcase_03 AC 52 ms
36,700 KB
testcase_04 AC 52 ms
37,040 KB
testcase_05 AC 51 ms
37,064 KB
testcase_06 AC 50 ms
36,820 KB
testcase_07 WA -
testcase_08 AC 53 ms
36,948 KB
testcase_09 WA -
testcase_10 AC 49 ms
37,128 KB
testcase_11 AC 50 ms
37,152 KB
testcase_12 AC 49 ms
36,952 KB
testcase_13 AC 50 ms
37,024 KB
testcase_14 AC 50 ms
37,084 KB
testcase_15 AC 51 ms
36,828 KB
testcase_16 AC 51 ms
36,816 KB
testcase_17 AC 52 ms
37,184 KB
testcase_18 WA -
testcase_19 AC 52 ms
37,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.StringTokenizer;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        int n = ni();
        int m = ni();
        int x = ni();
        int y = ni();

        int cx = x % (2 * m);
        int cy = y % (2 * m);

        if (cx > m) cx = 2 * m + 1 - cx;
        if (cy > m) cy = 2 * m + 1 - cy;

        out.println(cx == cy ? "YES" : "NO");
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0