結果

問題 No.166 マス埋めゲーム
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-22 10:57:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-10-02 10:12:42
合計ジャッジ時間 5,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 126 ms
41,244 KB
testcase_02 AC 126 ms
41,072 KB
testcase_03 AC 124 ms
41,236 KB
testcase_04 AC 111 ms
40,012 KB
testcase_05 AC 125 ms
41,432 KB
testcase_06 WA -
testcase_07 AC 132 ms
41,504 KB
testcase_08 AC 126 ms
41,344 KB
testcase_09 AC 121 ms
41,012 KB
testcase_10 AC 124 ms
41,296 KB
testcase_11 AC 124 ms
41,304 KB
testcase_12 AC 125 ms
41,180 KB
testcase_13 AC 128 ms
41,128 KB
testcase_14 AC 126 ms
41,236 KB
testcase_15 AC 114 ms
39,828 KB
testcase_16 AC 123 ms
41,104 KB
testcase_17 WA -
testcase_18 AC 125 ms
41,724 KB
testcase_19 AC 128 ms
41,108 KB
testcase_20 AC 123 ms
41,100 KB
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

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";
    System.out.println(ans);
  }
}
0