結果

問題 No.396 クラス替え
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-05-29 01:19:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 333 bytes
コンパイル時間 3,130 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-06-30 07:58:09
合計ジャッジ時間 6,551 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,952 KB
testcase_01 AC 128 ms
54,224 KB
testcase_02 AC 128 ms
54,016 KB
testcase_03 AC 126 ms
53,868 KB
testcase_04 AC 128 ms
54,004 KB
testcase_05 AC 128 ms
54,200 KB
testcase_06 AC 133 ms
53,980 KB
testcase_07 AC 129 ms
54,188 KB
testcase_08 AC 129 ms
54,092 KB
testcase_09 AC 129 ms
54,084 KB
testcase_10 AC 113 ms
52,824 KB
testcase_11 AC 127 ms
54,088 KB
testcase_12 AC 130 ms
53,836 KB
testcase_13 AC 128 ms
53,952 KB
testcase_14 AC 129 ms
54,140 KB
testcase_15 AC 127 ms
54,388 KB
testcase_16 AC 128 ms
53,816 KB
testcase_17 AC 128 ms
54,228 KB
testcase_18 AC 128 ms
54,060 KB
testcase_19 AC 131 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No396{
	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(X%(2*M) == Y%(2*M) || (X+Y)%(2*M) == 1){
			System.out.println("YES");
		}else System.out.println("NO");
	}
}
0