結果

問題 No.166 マス埋めゲーム
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-10 22:20:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-09-22 00:04:05
合計ジャッジ時間 6,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,376 KB
testcase_01 AC 118 ms
40,056 KB
testcase_02 AC 135 ms
41,428 KB
testcase_03 AC 135 ms
41,228 KB
testcase_04 AC 134 ms
41,196 KB
testcase_05 AC 133 ms
40,992 KB
testcase_06 AC 134 ms
41,740 KB
testcase_07 AC 134 ms
41,412 KB
testcase_08 AC 132 ms
41,264 KB
testcase_09 AC 132 ms
40,884 KB
testcase_10 AC 134 ms
41,288 KB
testcase_11 AC 132 ms
41,152 KB
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 135 ms
41,296 KB
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        int h = in.nextInt();
        int w = in.nextInt();
        int n = in.nextInt();
        int k = in.nextInt();

        if((h*w) % n == k % n) {
            System.out.println("YES");
        } else { 
            System.out.println("NO");
        }
    }
}
0