結果

問題 No.85 TVザッピング(1)
ユーザー バカらっくバカらっく
提出日時 2019-09-26 19:58:31
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 313 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 11,234 ms
コンパイル使用メモリ 433,340 KB
実行使用メモリ 51,912 KB
最終ジャッジ日時 2024-09-23 08:07:10
合計ジャッジ時間 22,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
51,748 KB
testcase_01 AC 308 ms
51,580 KB
testcase_02 AC 304 ms
51,912 KB
testcase_03 AC 308 ms
51,588 KB
testcase_04 AC 313 ms
51,768 KB
testcase_05 AC 311 ms
51,768 KB
testcase_06 AC 307 ms
51,736 KB
testcase_07 AC 307 ms
51,648 KB
testcase_08 AC 310 ms
51,736 KB
testcase_09 AC 308 ms
51,628 KB
testcase_10 AC 305 ms
51,676 KB
testcase_11 AC 303 ms
51,684 KB
testcase_12 AC 302 ms
51,640 KB
testcase_13 AC 308 ms
51,772 KB
testcase_14 AC 306 ms
51,660 KB
testcase_15 AC 306 ms
51,800 KB
testcase_16 AC 307 ms
51,696 KB
testcase_17 AC 305 ms
51,648 KB
testcase_18 AC 304 ms
51,640 KB
testcase_19 AC 305 ms
51,680 KB
testcase_20 AC 304 ms
51,588 KB
testcase_21 AC 306 ms
51,644 KB
testcase_22 AC 307 ms
51,896 KB
testcase_23 AC 308 ms
51,624 KB
testcase_24 AC 309 ms
51,492 KB
testcase_25 AC 309 ms
51,716 KB
testcase_26 AC 303 ms
51,816 KB
testcase_27 AC 312 ms
51,652 KB
testcase_28 AC 308 ms
51,908 KB
testcase_29 AC 304 ms
51,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    val (n,m) = readLine()!!.split(" ").map { it.toInt() }
    println(if(isValid(n,m)) "YES" else "NO")
}

fun isValid(n:Int, m:Int):Boolean {
    if(n == 1 || m == 1) {
        return n*m == 2
    }
    return n % 2 == 0 || m % 2 ==0
}
0