結果

問題 No.396 クラス替え
ユーザー crazybbb3crazybbb3
提出日時 2016-11-27 18:06:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,913 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 50,564 KB
最終ジャッジ日時 2024-05-05 14:18:01
合計ジャッジ時間 3,866 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,940 KB
testcase_01 AC 51 ms
37,192 KB
testcase_02 AC 51 ms
37,220 KB
testcase_03 AC 52 ms
36,860 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 51 ms
37,080 KB
testcase_09 WA -
testcase_10 AC 52 ms
36,968 KB
testcase_11 AC 51 ms
37,104 KB
testcase_12 WA -
testcase_13 AC 53 ms
37,036 KB
testcase_14 WA -
testcase_15 AC 52 ms
36,848 KB
testcase_16 AC 51 ms
37,264 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
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 c1 = x % (2 * m) < m ? x / (2 * m) : 2 * m - 1 - x / (2 * m);
        int c2 = y % (2 * m) < m ? y / (2 * m) : 2 * m - 1 - x / (2 * m);

        out.println(c1 == c2 ? "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