結果

問題 No.384 マス埋めゲーム2
ユーザー ぴろずぴろず
提出日時 2016-07-01 22:38:27
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 312 bytes
コンパイル時間 3,748 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-10-12 00:45:45
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,084 KB
testcase_01 RE -
testcase_02 AC 131 ms
40,660 KB
testcase_03 AC 131 ms
40,988 KB
testcase_04 AC 132 ms
41,024 KB
testcase_05 AC 130 ms
40,936 KB
testcase_06 AC 132 ms
40,816 KB
testcase_07 AC 131 ms
40,884 KB
testcase_08 AC 132 ms
40,880 KB
testcase_09 AC 132 ms
40,936 KB
testcase_10 AC 134 ms
41,000 KB
testcase_11 AC 133 ms
41,016 KB
testcase_12 AC 134 ms
41,452 KB
testcase_13 AC 135 ms
40,648 KB
testcase_14 AC 131 ms
40,916 KB
testcase_15 AC 128 ms
41,028 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 130 ms
40,792 KB
testcase_19 AC 134 ms
40,840 KB
testcase_20 AC 131 ms
40,936 KB
testcase_21 AC 133 ms
40,936 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package no384;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		int n = sc.nextInt();
		int k = sc.nextInt();
		System.out.println((h + w + n - 1) % n == k % n ? "YES" : "NO");
	}
}
0