結果

問題 No.166 マス埋めゲーム
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-22 10:59:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 384 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 46,664 KB
最終ジャッジ日時 2024-10-02 10:13:12
合計ジャッジ時間 5,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,364 KB
testcase_01 AC 117 ms
41,384 KB
testcase_02 AC 130 ms
41,340 KB
testcase_03 AC 124 ms
41,176 KB
testcase_04 AC 123 ms
41,312 KB
testcase_05 AC 124 ms
41,356 KB
testcase_06 AC 124 ms
41,224 KB
testcase_07 AC 125 ms
41,300 KB
testcase_08 AC 119 ms
41,196 KB
testcase_09 AC 123 ms
40,864 KB
testcase_10 AC 113 ms
46,664 KB
testcase_11 AC 123 ms
41,472 KB
testcase_12 AC 114 ms
40,032 KB
testcase_13 AC 125 ms
41,348 KB
testcase_14 AC 125 ms
41,508 KB
testcase_15 AC 124 ms
41,292 KB
testcase_16 AC 124 ms
41,352 KB
testcase_17 AC 125 ms
41,504 KB
testcase_18 AC 124 ms
41,104 KB
testcase_19 AC 127 ms
41,344 KB
testcase_20 AC 125 ms
41,244 KB
testcase_21 AC 123 ms
41,208 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();
    String ans = "NO";
    if(((H * W) % N) == K) ans = "YES";
    if(((H * W) % N) == 0 && K == N) ans = "YES";
    System.out.println(ans);
  }
}
0