結果

問題 No.166 マス埋めゲーム
ユーザー yagi2yagi2
提出日時 2017-04-24 14:17:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 504 bytes
コンパイル時間 2,379 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-09-13 11:51:40
合計ジャッジ時間 6,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,904 KB
testcase_01 AC 131 ms
54,072 KB
testcase_02 AC 127 ms
54,048 KB
testcase_03 AC 128 ms
53,944 KB
testcase_04 AC 131 ms
53,920 KB
testcase_05 AC 131 ms
53,492 KB
testcase_06 AC 132 ms
53,744 KB
testcase_07 AC 132 ms
53,960 KB
testcase_08 AC 131 ms
53,908 KB
testcase_09 AC 128 ms
53,892 KB
testcase_10 AC 129 ms
53,740 KB
testcase_11 AC 128 ms
54,088 KB
testcase_12 AC 128 ms
53,896 KB
testcase_13 AC 132 ms
54,040 KB
testcase_14 AC 130 ms
53,888 KB
testcase_15 AC 135 ms
53,940 KB
testcase_16 AC 134 ms
53,924 KB
testcase_17 AC 130 ms
53,840 KB
testcase_18 AC 130 ms
53,948 KB
testcase_19 AC 130 ms
53,916 KB
testcase_20 AC 131 ms
54,100 KB
testcase_21 AC 133 ms
53,976 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).subtract(BigInteger.ONE).mod(N).add(BigInteger.ONE).compareTo(K) == 0)? "YES" : "NO");
    }
}
0