結果

問題 No.166 マス埋めゲーム
ユーザー dazydazy
提出日時 2016-09-23 17:08:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 2,678 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 55,952 KB
最終ジャッジ日時 2024-11-17 19:02:57
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
41,376 KB
testcase_01 AC 103 ms
41,232 KB
testcase_02 AC 103 ms
41,440 KB
testcase_03 AC 106 ms
41,512 KB
testcase_04 AC 98 ms
41,336 KB
testcase_05 AC 103 ms
41,184 KB
testcase_06 WA -
testcase_07 AC 103 ms
40,976 KB
testcase_08 AC 104 ms
41,452 KB
testcase_09 AC 95 ms
41,360 KB
testcase_10 AC 96 ms
41,512 KB
testcase_11 AC 103 ms
41,208 KB
testcase_12 WA -
testcase_13 AC 104 ms
41,672 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 103 ms
41,540 KB
testcase_18 WA -
testcase_19 AC 96 ms
41,156 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        String ans = "NO";
        long HW = scan.nextInt() * scan.nextInt();
        long N = scan.nextLong();
        long K = scan.nextLong();
        if (HW%N==K || HW==K) ans = "YES";
        System.out.println(ans);
    }
}
0