結果

問題 No.166 マス埋めゲーム
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-02-10 22:23:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 421 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-09-22 00:04:36
合計ジャッジ時間 5,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,068 KB
testcase_01 AC 107 ms
39,968 KB
testcase_02 AC 121 ms
41,104 KB
testcase_03 AC 119 ms
40,924 KB
testcase_04 AC 103 ms
40,216 KB
testcase_05 AC 107 ms
39,856 KB
testcase_06 AC 122 ms
41,528 KB
testcase_07 AC 116 ms
41,272 KB
testcase_08 AC 106 ms
39,944 KB
testcase_09 AC 102 ms
40,088 KB
testcase_10 AC 109 ms
40,160 KB
testcase_11 AC 119 ms
41,120 KB
testcase_12 AC 118 ms
41,388 KB
testcase_13 AC 111 ms
40,084 KB
testcase_14 AC 125 ms
41,240 KB
testcase_15 AC 120 ms
41,148 KB
testcase_16 AC 106 ms
40,000 KB
testcase_17 AC 107 ms
40,088 KB
testcase_18 AC 105 ms
40,176 KB
testcase_19 AC 119 ms
41,144 KB
testcase_20 AC 120 ms
40,944 KB
testcase_21 AC 124 ms
40,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

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