結果

問題 No.166 マス埋めゲーム
ユーザー yagi2yagi2
提出日時 2017-04-24 14:15:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 55,940 KB
最終ジャッジ日時 2024-09-13 11:51:21
合計ジャッジ時間 6,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,268 KB
testcase_01 AC 127 ms
54,356 KB
testcase_02 AC 129 ms
54,232 KB
testcase_03 WA -
testcase_04 AC 128 ms
54,004 KB
testcase_05 WA -
testcase_06 AC 126 ms
54,056 KB
testcase_07 WA -
testcase_08 AC 130 ms
54,140 KB
testcase_09 AC 129 ms
53,956 KB
testcase_10 AC 130 ms
54,060 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 129 ms
54,072 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 132 ms
53,840 KB
testcase_18 WA -
testcase_19 AC 129 ms
53,968 KB
testcase_20 WA -
testcase_21 AC 133 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        BigInteger H = new BigInteger(sc.next());
        BigInteger W = new BigInteger(sc.next());
        BigInteger N = new BigInteger(sc.next());
        BigInteger K = new BigInteger(sc.next());

        System.out.println((H.multiply(W).mod(N.add(BigInteger.ONE)).compareTo(K) == 0)? "YES" : "NO");
    }
}
0