結果

問題 No.166 マス埋めゲーム
ユーザー tsunabittsunabit
提出日時 2019-05-12 23:22:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 447 bytes
コンパイル時間 3,125 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-07-05 19:05:37
合計ジャッジ時間 6,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,028 KB
testcase_01 AC 123 ms
41,412 KB
testcase_02 AC 123 ms
41,072 KB
testcase_03 AC 121 ms
41,396 KB
testcase_04 AC 120 ms
41,064 KB
testcase_05 AC 123 ms
40,992 KB
testcase_06 AC 122 ms
41,088 KB
testcase_07 AC 119 ms
40,800 KB
testcase_08 AC 124 ms
41,220 KB
testcase_09 AC 110 ms
40,020 KB
testcase_10 AC 122 ms
40,860 KB
testcase_11 AC 123 ms
40,800 KB
testcase_12 AC 125 ms
41,192 KB
testcase_13 AC 122 ms
41,392 KB
testcase_14 AC 123 ms
41,412 KB
testcase_15 AC 106 ms
41,004 KB
testcase_16 AC 121 ms
41,392 KB
testcase_17 AC 120 ms
40,860 KB
testcase_18 AC 124 ms
41,540 KB
testcase_19 AC 125 ms
40,876 KB
testcase_20 AC 125 ms
41,276 KB
testcase_21 AC 129 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class No166 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        long h = s.nextLong() , w = s.nextLong() , n = s.nextLong() , k = s.nextLong();
		if(h * w % n == k % n){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
    }
}
0