結果

問題 No.166 マス埋めゲーム
ユーザー ffmm00ffmm00
提出日時 2015-06-08 07:35:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 374 bytes
コンパイル時間 3,034 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-07-06 14:42:27
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,020 KB
testcase_01 AC 124 ms
54,032 KB
testcase_02 AC 108 ms
52,956 KB
testcase_03 AC 125 ms
54,124 KB
testcase_04 AC 125 ms
53,876 KB
testcase_05 AC 124 ms
54,072 KB
testcase_06 AC 116 ms
53,784 KB
testcase_07 AC 110 ms
52,800 KB
testcase_08 AC 124 ms
54,112 KB
testcase_09 AC 125 ms
54,064 KB
testcase_10 AC 127 ms
54,244 KB
testcase_11 AC 110 ms
52,980 KB
testcase_12 AC 123 ms
54,060 KB
testcase_13 AC 126 ms
54,044 KB
testcase_14 AC 123 ms
54,040 KB
testcase_15 AC 119 ms
53,948 KB
testcase_16 AC 125 ms
54,020 KB
testcase_17 AC 121 ms
54,220 KB
testcase_18 AC 127 ms
53,996 KB
testcase_19 AC 126 ms
53,836 KB
testcase_20 AC 122 ms
54,088 KB
testcase_21 AC 108 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N166 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		long H = sca.nextLong();
		long W = sca.nextLong();
		long N = sca.nextLong();
		long K = sca.nextLong();

		long M = (H * W) % N;

		if (K == M || (M == 0 && K == N))
			System.out.println("YES");
		else
			System.out.println("NO");

	}

}
0