結果

問題 No.396 クラス替え
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 16:27:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 574 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-11-26 02:19:20
合計ジャッジ時間 5,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,032 KB
testcase_01 AC 130 ms
40,912 KB
testcase_02 AC 126 ms
41,216 KB
testcase_03 AC 132 ms
41,388 KB
testcase_04 AC 131 ms
41,456 KB
testcase_05 AC 129 ms
41,344 KB
testcase_06 AC 132 ms
41,532 KB
testcase_07 AC 130 ms
41,044 KB
testcase_08 AC 129 ms
41,160 KB
testcase_09 AC 130 ms
41,072 KB
testcase_10 AC 129 ms
41,312 KB
testcase_11 AC 116 ms
40,216 KB
testcase_12 AC 114 ms
40,064 KB
testcase_13 AC 125 ms
41,364 KB
testcase_14 AC 127 ms
41,304 KB
testcase_15 AC 132 ms
41,044 KB
testcase_16 AC 116 ms
39,768 KB
testcase_17 AC 115 ms
39,804 KB
testcase_18 AC 116 ms
39,752 KB
testcase_19 AC 126 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int M = sc.nextInt();
        int X = sc.nextInt();
        int Y = sc.nextInt();
        if( cl(X,M)==cl(Y,M) ){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }

    static int cl(int a,int b){
        a = (a-1)%(2*b)+1;
        int z=(a-1)/b;
        if(z==0){
            return a;
        }else{
            return 2*b+1-a;
        }
    }
}
0