結果

問題 No.166 マス埋めゲーム
ユーザー jin128jin128
提出日時 2016-08-30 19:16:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-04-26 18:03:12
合計ジャッジ時間 5,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,172 KB
testcase_01 AC 112 ms
40,316 KB
testcase_02 AC 123 ms
41,088 KB
testcase_03 AC 120 ms
40,812 KB
testcase_04 AC 118 ms
41,320 KB
testcase_05 AC 117 ms
41,232 KB
testcase_06 AC 119 ms
41,248 KB
testcase_07 AC 113 ms
41,168 KB
testcase_08 AC 121 ms
41,204 KB
testcase_09 AC 120 ms
41,216 KB
testcase_10 AC 118 ms
40,628 KB
testcase_11 AC 109 ms
39,796 KB
testcase_12 WA -
testcase_13 AC 108 ms
39,920 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 123 ms
41,288 KB
testcase_18 WA -
testcase_19 AC 113 ms
40,056 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