結果

問題 No.166 マス埋めゲーム
ユーザー ちよちゃんちよちゃん
提出日時 2016-06-07 20:31:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 506 bytes
コンパイル時間 4,574 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-10-08 18:11:51
合計ジャッジ時間 8,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,956 KB
testcase_01 AC 137 ms
40,704 KB
testcase_02 AC 141 ms
41,088 KB
testcase_03 AC 137 ms
40,948 KB
testcase_04 AC 134 ms
41,144 KB
testcase_05 AC 138 ms
40,832 KB
testcase_06 AC 136 ms
41,116 KB
testcase_07 AC 138 ms
41,008 KB
testcase_08 AC 140 ms
41,304 KB
testcase_09 AC 139 ms
40,908 KB
testcase_10 AC 139 ms
41,116 KB
testcase_11 AC 137 ms
41,060 KB
testcase_12 AC 138 ms
41,064 KB
testcase_13 AC 138 ms
41,120 KB
testcase_14 AC 135 ms
40,984 KB
testcase_15 AC 135 ms
40,988 KB
testcase_16 AC 136 ms
41,008 KB
testcase_17 AC 140 ms
41,012 KB
testcase_18 AC 138 ms
40,812 KB
testcase_19 AC 138 ms
40,804 KB
testcase_20 AC 138 ms
41,132 KB
testcase_21 AC 138 ms
40,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki166 {
	
	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();
		
		long mas = (h * w) % n;
		// System.out.println(mas);

		if( mas - k == 0){
			System.out.println("YES");
		}else if( mas == 0 && n == k){ 
			System.out.println("YES");
		}else {
			System.out.println("NO");
		}
	}	
}
0