結果

問題 No.384 マス埋めゲーム2
ユーザー htensaihtensai
提出日時 2019-11-20 13:32:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-10-06 04:28:46
合計ジャッジ時間 5,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 AC 116 ms
41,140 KB
testcase_03 AC 113 ms
40,956 KB
testcase_04 AC 117 ms
40,692 KB
testcase_05 AC 129 ms
40,988 KB
testcase_06 AC 116 ms
41,228 KB
testcase_07 AC 114 ms
39,964 KB
testcase_08 AC 117 ms
40,860 KB
testcase_09 AC 113 ms
41,024 KB
testcase_10 AC 112 ms
40,824 KB
testcase_11 AC 102 ms
40,128 KB
testcase_12 AC 114 ms
41,180 KB
testcase_13 AC 100 ms
39,752 KB
testcase_14 AC 119 ms
41,060 KB
testcase_15 AC 107 ms
39,952 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 102 ms
40,004 KB
testcase_19 AC 120 ms
40,968 KB
testcase_20 WA -
testcase_21 AC 118 ms
40,928 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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();
		int mod = (h + w - 1) % n;
		if (mod == k) {
		    System.out.println("YES");
		} else {
		    System.out.println("NO");
		}
	}
}
0