結果

問題 No.166 マス埋めゲーム
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-05 23:52:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 672 bytes
コンパイル時間 4,194 ms
コンパイル使用メモリ 73,740 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-07-04 02:15:31
合計ジャッジ時間 5,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,968 KB
testcase_01 AC 120 ms
53,972 KB
testcase_02 AC 118 ms
53,852 KB
testcase_03 AC 119 ms
53,836 KB
testcase_04 AC 109 ms
52,840 KB
testcase_05 AC 110 ms
52,880 KB
testcase_06 AC 117 ms
53,764 KB
testcase_07 AC 125 ms
54,104 KB
testcase_08 AC 127 ms
53,964 KB
testcase_09 AC 118 ms
53,812 KB
testcase_10 AC 110 ms
52,636 KB
testcase_11 AC 124 ms
53,820 KB
testcase_12 AC 116 ms
53,016 KB
testcase_13 AC 123 ms
54,056 KB
testcase_14 AC 121 ms
53,756 KB
testcase_15 AC 119 ms
53,760 KB
testcase_16 AC 120 ms
53,960 KB
testcase_17 AC 118 ms
54,212 KB
testcase_18 AC 123 ms
54,036 KB
testcase_19 AC 127 ms
53,820 KB
testcase_20 AC 127 ms
54,168 KB
testcase_21 AC 130 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner (System.in);
        long h = koko.nextLong();
        long w = koko.nextLong();
        long n = koko.nextLong();
        long k = koko.nextLong();
        long mass = h*w;
        if(n!=k){
            if(mass%n==k){
                System.out.println("YES");
            }else{
                System.out.println("NO");
            }
        }
        if(n==k){
            if(mass%n==0){
                System.out.println("YES");
            }else{
                System.out.println("NO");
            }
        }
    }
}
0