結果

問題 No.384 マス埋めゲーム2
ユーザー nCk_cvnCk_cv
提出日時 2016-08-28 23:41:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 378 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 58,516 KB
最終ジャッジ日時 2024-11-14 06:40:59
合計ジャッジ時間 6,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
58,204 KB
testcase_01 AC 129 ms
58,308 KB
testcase_02 AC 131 ms
58,276 KB
testcase_03 AC 131 ms
58,068 KB
testcase_04 AC 131 ms
57,956 KB
testcase_05 AC 139 ms
58,516 KB
testcase_06 AC 131 ms
58,084 KB
testcase_07 AC 130 ms
57,948 KB
testcase_08 AC 135 ms
58,248 KB
testcase_09 AC 134 ms
58,100 KB
testcase_10 AC 131 ms
58,224 KB
testcase_11 AC 130 ms
58,180 KB
testcase_12 AC 131 ms
58,476 KB
testcase_13 AC 131 ms
58,264 KB
testcase_14 AC 135 ms
58,260 KB
testcase_15 AC 133 ms
58,196 KB
testcase_16 AC 130 ms
58,028 KB
testcase_17 AC 130 ms
58,164 KB
testcase_18 AC 131 ms
58,408 KB
testcase_19 AC 118 ms
57,072 KB
testcase_20 AC 132 ms
58,140 KB
testcase_21 AC 132 ms
58,004 KB
testcase_22 AC 133 ms
58,132 KB
testcase_23 AC 135 ms
58,104 KB
testcase_24 AC 130 ms
57,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	static int[] an = new int[1000000];
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			long H = sc.nextLong();
			long W = sc.nextLong();
			long N = sc.nextLong();
			long K = sc.nextLong();
			if((H + W - 2) % N + 1 == K) System.out.println("YES");
			else System.out.println("NO");
		}

		

}
0