結果

問題 No.396 クラス替え
ユーザー samplelpmassamplelpmas
提出日時 2017-05-07 18:19:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 591 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-09-14 14:50:34
合計ジャッジ時間 5,922 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,896 KB
testcase_01 AC 134 ms
53,884 KB
testcase_02 AC 132 ms
54,008 KB
testcase_03 AC 134 ms
53,868 KB
testcase_04 AC 133 ms
53,868 KB
testcase_05 AC 118 ms
52,460 KB
testcase_06 AC 132 ms
53,680 KB
testcase_07 AC 132 ms
54,104 KB
testcase_08 AC 132 ms
54,036 KB
testcase_09 AC 134 ms
53,864 KB
testcase_10 AC 135 ms
54,116 KB
testcase_11 AC 131 ms
53,952 KB
testcase_12 AC 136 ms
54,108 KB
testcase_13 AC 133 ms
54,176 KB
testcase_14 AC 130 ms
53,784 KB
testcase_15 AC 133 ms
53,824 KB
testcase_16 AC 134 ms
53,800 KB
testcase_17 AC 120 ms
52,896 KB
testcase_18 AC 119 ms
52,712 KB
testcase_19 AC 135 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int students = sc.nextInt();
        int groups = sc.nextInt();
        int hanakoRank = sc.nextInt();
        int taroRank = sc.nextInt();

        if ((hanakoRank - taroRank) % (2 * groups) == 0) {
            System.out.println("YES");
            return;
        }

        if ((hanakoRank + taroRank) % (2 * groups) == 1) {
            System.out.println("YES");
            return;
        }

        System.out.println("NO");

    }

}
0