結果

問題 No.166 マス埋めゲーム
ユーザー YamaKasaYamaKasa
提出日時 2018-05-17 22:28:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 3,476 ms
コンパイル使用メモリ 74,212 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-28 13:35:24
合計ジャッジ時間 6,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,840 KB
testcase_01 AC 117 ms
39,996 KB
testcase_02 AC 132 ms
40,856 KB
testcase_03 WA -
testcase_04 AC 118 ms
39,680 KB
testcase_05 WA -
testcase_06 AC 130 ms
41,124 KB
testcase_07 WA -
testcase_08 AC 131 ms
40,936 KB
testcase_09 AC 131 ms
40,912 KB
testcase_10 AC 132 ms
41,216 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 132 ms
41,212 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 132 ms
41,288 KB
testcase_18 WA -
testcase_19 AC 132 ms
40,900 KB
testcase_20 WA -
testcase_21 AC 133 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long H = scan.nextLong();
		long W = scan.nextLong();
		long N = scan.nextLong();
		long K = scan.nextLong();
		scan.close();
		if(((H % N) * (W % N)) % N == 0) {
			if(K == N) {
				System.out.println("YES");
			}else {
				System.out.println("NO");
			}
		}else {
			System.out.println("NO");
		}
	}
}
0