結果

問題 No.166 マス埋めゲーム
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-05 23:49:09
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 670 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-07-04 02:14:07
合計ジャッジ時間 4,971 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,436 KB
testcase_01 AC 101 ms
39,944 KB
testcase_02 AC 102 ms
39,848 KB
testcase_03 AC 109 ms
40,232 KB
testcase_04 AC 103 ms
40,040 KB
testcase_05 AC 95 ms
39,436 KB
testcase_06 AC 101 ms
40,128 KB
testcase_07 AC 107 ms
40,216 KB
testcase_08 AC 120 ms
41,160 KB
testcase_09 AC 105 ms
40,100 KB
testcase_10 AC 115 ms
41,004 KB
testcase_11 AC 121 ms
41,240 KB
testcase_12 AC 115 ms
41,532 KB
testcase_13 AC 123 ms
41,256 KB
testcase_14 RE -
testcase_15 AC 107 ms
40,184 KB
testcase_16 AC 106 ms
40,824 KB
testcase_17 AC 113 ms
41,448 KB
testcase_18 AC 103 ms
40,180 KB
testcase_19 RE -
testcase_20 AC 119 ms
41,000 KB
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

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();
        int k = koko.nextInt();
        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