結果

問題 No.396 クラス替え
ユーザー crazybbb3crazybbb3
提出日時 2016-11-27 18:08:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,925 bytes
コンパイル時間 2,045 ms
コンパイル使用メモリ 78,436 KB
実行使用メモリ 37,356 KB
最終ジャッジ日時 2024-05-05 14:18:16
合計ジャッジ時間 3,639 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,224 KB
testcase_01 AC 45 ms
37,228 KB
testcase_02 AC 45 ms
36,980 KB
testcase_03 AC 44 ms
37,020 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
37,172 KB
testcase_09 WA -
testcase_10 AC 45 ms
36,952 KB
testcase_11 AC 47 ms
37,020 KB
testcase_12 WA -
testcase_13 AC 45 ms
36,836 KB
testcase_14 WA -
testcase_15 AC 45 ms
37,116 KB
testcase_16 AC 45 ms
37,220 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