結果

問題 No.166 マス埋めゲーム
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 04:01:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 490 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-11-25 21:43:46
合計ジャッジ時間 5,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,344 KB
testcase_01 AC 108 ms
39,920 KB
testcase_02 AC 120 ms
40,984 KB
testcase_03 AC 118 ms
41,032 KB
testcase_04 AC 122 ms
41,260 KB
testcase_05 AC 123 ms
41,100 KB
testcase_06 AC 119 ms
40,876 KB
testcase_07 AC 115 ms
41,692 KB
testcase_08 AC 102 ms
39,948 KB
testcase_09 AC 114 ms
41,156 KB
testcase_10 AC 110 ms
41,028 KB
testcase_11 AC 112 ms
41,096 KB
testcase_12 AC 114 ms
41,232 KB
testcase_13 AC 111 ms
41,044 KB
testcase_14 AC 117 ms
41,540 KB
testcase_15 AC 102 ms
40,176 KB
testcase_16 AC 105 ms
40,164 KB
testcase_17 AC 109 ms
41,416 KB
testcase_18 AC 114 ms
41,204 KB
testcase_19 AC 103 ms
39,804 KB
testcase_20 AC 109 ms
41,372 KB
testcase_21 AC 111 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long H = sc.nextLong();
        long W = sc.nextLong();
        long N = sc.nextLong();
        long K = sc.nextLong();
        long z = H*W%N;
        
        if(z==K){
            System.out.println("YES");
        }else if(z==0 && K==N){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0