結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,296 KB
testcase_01 AC 132 ms
40,964 KB
testcase_02 AC 133 ms
41,232 KB
testcase_03 AC 134 ms
41,300 KB
testcase_04 AC 134 ms
41,076 KB
testcase_05 AC 133 ms
41,284 KB
testcase_06 AC 134 ms
41,404 KB
testcase_07 AC 134 ms
40,888 KB
testcase_08 AC 136 ms
41,488 KB
testcase_09 AC 136 ms
41,468 KB
testcase_10 AC 121 ms
40,312 KB
testcase_11 AC 133 ms
41,152 KB
testcase_12 AC 132 ms
41,376 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 132 ms
41,336 KB
testcase_16 AC 138 ms
41,556 KB
testcase_17 AC 135 ms
41,588 KB
testcase_18 AC 135 ms
41,008 KB
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);
        long h = in.nextInt();
        long w = in.nextInt();
        long n = in.nextInt();
        long k = in.nextInt();

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