結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,084 KB
testcase_01 AC 134 ms
41,116 KB
testcase_02 AC 119 ms
39,788 KB
testcase_03 AC 133 ms
41,208 KB
testcase_04 AC 135 ms
41,120 KB
testcase_05 AC 132 ms
41,112 KB
testcase_06 AC 133 ms
41,272 KB
testcase_07 AC 135 ms
41,188 KB
testcase_08 AC 134 ms
41,252 KB
testcase_09 AC 122 ms
40,060 KB
testcase_10 AC 134 ms
41,084 KB
testcase_11 AC 124 ms
39,952 KB
testcase_12 AC 134 ms
41,308 KB
testcase_13 AC 134 ms
40,988 KB
testcase_14 AC 135 ms
41,148 KB
testcase_15 AC 121 ms
40,060 KB
testcase_16 AC 134 ms
41,216 KB
testcase_17 AC 133 ms
41,068 KB
testcase_18 AC 120 ms
40,276 KB
testcase_19 AC 122 ms
39,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package No300台;

import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long m = sc.nextLong();
		long x = sc.nextLong() - 1;
		long y = sc.nextLong() - 1;
		x = x % (2 * m);
		y = y % (2 * m);
		if (x == y) {
			System.out.println("YES");
		} else if (Math.abs(x + y) == 2 * m - 1) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0