結果

問題 No.166 マス埋めゲーム
ユーザー 826814741_6826814741_6
提出日時 2019-01-04 19:18:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 290 ms / 1,000 ms
コード長 329 bytes
コンパイル時間 12,167 ms
コンパイル使用メモリ 438,292 KB
実行使用メモリ 51,948 KB
最終ジャッジ日時 2024-11-20 17:22:49
合計ジャッジ時間 17,439 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
51,608 KB
testcase_01 AC 278 ms
51,912 KB
testcase_02 AC 283 ms
51,868 KB
testcase_03 AC 285 ms
51,724 KB
testcase_04 AC 287 ms
51,912 KB
testcase_05 AC 290 ms
51,788 KB
testcase_06 AC 281 ms
51,600 KB
testcase_07 AC 277 ms
51,748 KB
testcase_08 AC 280 ms
51,496 KB
testcase_09 AC 278 ms
51,736 KB
testcase_10 AC 280 ms
51,744 KB
testcase_11 AC 277 ms
51,772 KB
testcase_12 AC 282 ms
51,736 KB
testcase_13 AC 281 ms
51,796 KB
testcase_14 AC 284 ms
51,592 KB
testcase_15 AC 278 ms
51,496 KB
testcase_16 AC 281 ms
51,936 KB
testcase_17 AC 280 ms
51,820 KB
testcase_18 AC 278 ms
51,696 KB
testcase_19 AC 279 ms
51,948 KB
testcase_20 AC 277 ms
51,792 KB
testcase_21 AC 281 ms
51,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:10:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun f(h: Long, w: Long, n: Long, k: Long): Boolean {
    val t = h * w
    return when {
        t <= n -> t==k
        (t%n==k) || (n==k&&t%n==0L) -> true
        else -> false
    }
}

fun main(args: Array<String>) {
    val (h,w,n,k) = readLine()!!.split(' ').map(String::toLong)
    println(if (f(h,w,n,k)) "YES" else "NO")
}
0