結果

問題 No.396 クラス替え
ユーザー 37zigen37zigen
提出日時 2016-07-15 22:47:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 1,953 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-10-15 04:36:38
合計ジャッジ時間 5,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,100 KB
testcase_01 AC 125 ms
41,072 KB
testcase_02 AC 123 ms
41,156 KB
testcase_03 AC 124 ms
40,996 KB
testcase_04 AC 121 ms
41,124 KB
testcase_05 AC 124 ms
41,428 KB
testcase_06 AC 121 ms
40,896 KB
testcase_07 WA -
testcase_08 AC 116 ms
41,016 KB
testcase_09 WA -
testcase_10 AC 114 ms
41,024 KB
testcase_11 AC 102 ms
39,700 KB
testcase_12 AC 110 ms
39,684 KB
testcase_13 AC 121 ms
41,316 KB
testcase_14 AC 120 ms
40,704 KB
testcase_15 AC 121 ms
41,056 KB
testcase_16 AC 119 ms
40,696 KB
testcase_17 AC 121 ms
41,432 KB
testcase_18 WA -
testcase_19 AC 111 ms
41,136 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();
		long y = sc.nextLong();
		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