結果

問題 No.396 クラス替え
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 20:43:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 1,000 ms
コード長 478 bytes
コンパイル時間 2,921 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-05-02 02:26:09
合計ジャッジ時間 5,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,344 KB
testcase_01 AC 112 ms
41,208 KB
testcase_02 AC 110 ms
41,040 KB
testcase_03 AC 113 ms
41,180 KB
testcase_04 AC 99 ms
39,904 KB
testcase_05 AC 110 ms
41,060 KB
testcase_06 AC 105 ms
40,340 KB
testcase_07 AC 109 ms
40,640 KB
testcase_08 AC 111 ms
40,796 KB
testcase_09 AC 112 ms
41,088 KB
testcase_10 AC 101 ms
39,948 KB
testcase_11 AC 114 ms
41,312 KB
testcase_12 AC 112 ms
40,860 KB
testcase_13 AC 109 ms
40,848 KB
testcase_14 AC 108 ms
40,728 KB
testcase_15 AC 115 ms
41,096 KB
testcase_16 AC 101 ms
39,744 KB
testcase_17 AC 96 ms
39,804 KB
testcase_18 AC 116 ms
41,012 KB
testcase_19 AC 109 ms
40,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt(), m = sc.nextInt(), x = sc.nextInt() - 1, y = sc.nextInt() - 1;
		int a, b;
		if ((x / m) % 2 == 0) {
			a = x % m;
		} else {
			a = m - 1 - (x % m);
		}
		if ((y / m) % 2 == 0) {
			b = y % m;
		} else {
			b = m - 1 - (y % m);
		}
		if (a == b) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0