結果

問題 No.166 マス埋めゲーム
ユーザー jimanojimano
提出日時 2018-02-10 16:12:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 574 bytes
コンパイル時間 3,425 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 50,312 KB
最終ジャッジ日時 2024-10-14 14:41:43
合計ジャッジ時間 5,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,300 KB
testcase_01 AC 56 ms
50,272 KB
testcase_02 AC 55 ms
50,272 KB
testcase_03 AC 57 ms
50,012 KB
testcase_04 AC 55 ms
50,000 KB
testcase_05 AC 56 ms
50,304 KB
testcase_06 AC 57 ms
50,124 KB
testcase_07 AC 57 ms
50,284 KB
testcase_08 AC 57 ms
49,772 KB
testcase_09 AC 55 ms
50,204 KB
testcase_10 AC 56 ms
49,908 KB
testcase_11 AC 56 ms
50,220 KB
testcase_12 AC 55 ms
50,296 KB
testcase_13 AC 56 ms
50,240 KB
testcase_14 AC 56 ms
50,032 KB
testcase_15 AC 56 ms
50,288 KB
testcase_16 AC 56 ms
49,796 KB
testcase_17 AC 55 ms
50,224 KB
testcase_18 AC 55 ms
50,104 KB
testcase_19 AC 55 ms
50,060 KB
testcase_20 AC 55 ms
50,312 KB
testcase_21 AC 56 ms
50,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0166 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] input = br.readLine().split(" "); 
		long h = Long.parseLong(input[0]);
		long w = Long.parseLong(input[1]);
		long n = Long.parseLong(input[2]);
		long k = Long.parseLong(input[3]);
		
		long hw = h * w;
		System.out.println((hw % n == k || hw % n == 0 && n == k) ? "YES" : "NO");
	}
}
0