結果

問題 No.166 マス埋めゲーム
ユーザー k_kadorak_kadora
提出日時 2015-05-27 14:29:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 372 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-07-06 10:53:46
合計ジャッジ時間 7,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,836 KB
testcase_01 AC 96 ms
53,724 KB
testcase_02 AC 115 ms
54,280 KB
testcase_03 AC 117 ms
53,704 KB
testcase_04 AC 115 ms
53,944 KB
testcase_05 AC 114 ms
53,488 KB
testcase_06 AC 121 ms
53,748 KB
testcase_07 AC 114 ms
53,788 KB
testcase_08 AC 102 ms
52,780 KB
testcase_09 AC 117 ms
53,908 KB
testcase_10 AC 104 ms
52,856 KB
testcase_11 AC 99 ms
52,704 KB
testcase_12 AC 110 ms
53,892 KB
testcase_13 AC 113 ms
53,996 KB
testcase_14 AC 112 ms
54,064 KB
testcase_15 AC 109 ms
53,888 KB
testcase_16 AC 103 ms
52,728 KB
testcase_17 AC 113 ms
53,836 KB
testcase_18 AC 103 ms
52,528 KB
testcase_19 AC 109 ms
53,852 KB
testcase_20 AC 112 ms
53,984 KB
testcase_21 AC 100 ms
52,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Masu {
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		long h,w,n,k,sum,ch;
		h = sc.nextLong();
		w = sc.nextLong();
		n = sc.nextLong();
		k = sc.nextLong();
		sum = h*w;
		ch = sum % n;
		if((k == ch) || (k == n && ch == 0)){
			System.out.println("YES");
		}else {
			System.out.println("NO");
		}
	}
}
0