結果

問題 No.396 クラス替え
ユーザー htensaihtensai
提出日時 2019-12-18 12:18:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 1,000 ms
コード長 920 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-07-06 05:03:15
合計ジャッジ時間 3,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,096 KB
testcase_01 AC 50 ms
50,036 KB
testcase_02 AC 48 ms
50,128 KB
testcase_03 AC 49 ms
50,148 KB
testcase_04 AC 47 ms
50,184 KB
testcase_05 AC 47 ms
50,304 KB
testcase_06 AC 47 ms
50,252 KB
testcase_07 AC 48 ms
49,952 KB
testcase_08 AC 46 ms
50,260 KB
testcase_09 AC 45 ms
50,144 KB
testcase_10 AC 45 ms
50,016 KB
testcase_11 AC 48 ms
50,092 KB
testcase_12 AC 48 ms
49,980 KB
testcase_13 AC 47 ms
50,080 KB
testcase_14 AC 46 ms
49,912 KB
testcase_15 AC 45 ms
50,288 KB
testcase_16 AC 45 ms
50,212 KB
testcase_17 AC 45 ms
49,940 KB
testcase_18 AC 46 ms
49,772 KB
testcase_19 AC 47 ms
50,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int m = Integer.parseInt(first[1]);
        String[] second = br.readLine().split(" ", 2);
        int x = Integer.parseInt(second[0]);
        int y = Integer.parseInt(second[1]);
        if (getClass(x, m) == getClass(y, m)) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    
    static int getClass(int x, int m) {
        if ((x - 1) / m % 2 == 0) {
            if (x % m == 0) {
                return m;
            } else {
                return x % m;
            }
        } else {
            return m - (x - 1) % m;
        }
    }
}
0