結果

問題 No.166 マス埋めゲーム
ユーザー jin128jin128
提出日時 2016-08-30 19:16:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 2,250 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-11-14 07:52:54
合計ジャッジ時間 5,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,144 KB
testcase_01 AC 131 ms
54,064 KB
testcase_02 AC 129 ms
54,164 KB
testcase_03 AC 131 ms
53,876 KB
testcase_04 AC 128 ms
54,144 KB
testcase_05 AC 129 ms
54,024 KB
testcase_06 AC 131 ms
54,148 KB
testcase_07 AC 136 ms
54,024 KB
testcase_08 AC 128 ms
54,300 KB
testcase_09 AC 115 ms
52,952 KB
testcase_10 AC 129 ms
54,288 KB
testcase_11 AC 128 ms
54,156 KB
testcase_12 WA -
testcase_13 AC 130 ms
54,360 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 130 ms
54,268 KB
testcase_18 WA -
testcase_19 AC 129 ms
53,888 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class S27_massgame{
  public static void main(String[] args){
    int w, h;
    long n, k , end;
    Scanner sc = new Scanner(System.in);

    w = sc.nextInt();
    h = sc.nextInt();
    n = sc.nextLong();
    k = sc.nextLong();

    end = w * h % n;
    if(end == 0) end = n;
    if(k == end){
      System.out.println("YES");
    }else{
      System.out.println("NO");
    }

  }
}
0