結果

問題 No.396 クラス替え
ユーザー uafr_csuafr_cs
提出日時 2016-07-15 22:33:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 609 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 75,344 KB
実行使用メモリ 41,260 KB
最終ジャッジ日時 2024-11-17 10:43:53
合計ジャッジ時間 5,676 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
39,884 KB
testcase_01 AC 130 ms
40,960 KB
testcase_02 AC 118 ms
39,940 KB
testcase_03 AC 131 ms
40,824 KB
testcase_04 AC 132 ms
41,156 KB
testcase_05 AC 133 ms
41,028 KB
testcase_06 AC 133 ms
40,996 KB
testcase_07 AC 130 ms
40,928 KB
testcase_08 AC 133 ms
40,952 KB
testcase_09 AC 134 ms
41,072 KB
testcase_10 AC 118 ms
40,128 KB
testcase_11 AC 135 ms
41,216 KB
testcase_12 AC 132 ms
41,204 KB
testcase_13 AC 135 ms
41,148 KB
testcase_14 AC 129 ms
40,976 KB
testcase_15 AC 130 ms
41,100 KB
testcase_16 AC 129 ms
40,936 KB
testcase_17 AC 132 ms
40,916 KB
testcase_18 AC 132 ms
41,260 KB
testcase_19 AC 131 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextInt();
		final long M = sc.nextInt();
		final long X = sc.nextInt() - 1;
		final long Y = sc.nextInt() - 1;
		
		long X_mod2M = X % (2 * M);
		if(X_mod2M >= M){ X_mod2M = (M - 1) - (X_mod2M - M); }
		long Y_mod2M = Y % (2 * M);
		if(Y_mod2M >= M){ Y_mod2M = (M - 1) - (Y_mod2M - M); }
		
		System.out.println((X_mod2M== Y_mod2M) ? "YES" : "NO");
	}

}
0