結果

問題 No.166 マス埋めゲーム
ユーザー くわいくわい
提出日時 2015-12-25 17:36:35
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 285 bytes
コンパイル時間 7,922 ms
コンパイル使用メモリ 260,852 KB
実行使用メモリ 65,312 KB
最終ジャッジ日時 2024-06-29 12:27:12
合計ジャッジ時間 26,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 792 ms
64,908 KB
testcase_01 AC 818 ms
65,020 KB
testcase_02 AC 807 ms
64,772 KB
testcase_03 WA -
testcase_04 AC 840 ms
65,092 KB
testcase_05 WA -
testcase_06 AC 906 ms
65,016 KB
testcase_07 WA -
testcase_08 AC 801 ms
65,024 KB
testcase_09 AC 840 ms
64,916 KB
testcase_10 AC 824 ms
64,892 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 836 ms
64,980 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 809 ms
65,252 KB
testcase_18 WA -
testcase_19 AC 796 ms
64,924 KB
testcase_20 WA -
testcase_21 AC 811 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Yukicoder extends App {
  val sc = new Scanner(System.in)
  val H = sc.nextLong()
  val W = sc.nextLong()
  val N = sc.nextLong()
  val K = sc.nextLong()

  val field = H * W
  val result = if ((field + K) % N == 0) "YES" else "NO"
  println(result)
}
0