結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 12:58:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 9,977 ms
コンパイル使用メモリ 427,196 KB
実行使用メモリ 49,896 KB
最終ジャッジ日時 2024-11-20 18:09:42
合計ジャッジ時間 14,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 250 ms
49,448 KB
testcase_01 AC 248 ms
49,508 KB
testcase_02 AC 257 ms
49,476 KB
testcase_03 AC 253 ms
49,724 KB
testcase_04 AC 258 ms
49,536 KB
testcase_05 AC 261 ms
49,392 KB
testcase_06 AC 259 ms
49,400 KB
testcase_07 AC 257 ms
49,572 KB
testcase_08 AC 257 ms
49,868 KB
testcase_09 AC 254 ms
49,896 KB
testcase_10 AC 251 ms
49,540 KB
testcase_11 AC 256 ms
49,616 KB
testcase_12 AC 254 ms
49,480 KB
testcase_13 AC 254 ms
49,476 KB
testcase_14 AC 262 ms
49,536 KB
testcase_15 AC 254 ms
49,772 KB
testcase_16 AC 252 ms
49,388 KB
testcase_17 AC 257 ms
49,524 KB
testcase_18 AC 252 ms
49,544 KB
testcase_19 AC 258 ms
49,444 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
    // そもそも M = 10 * Nの制約があるので条件分岐はいらない(問題文の落とし穴)
    /* val (N,M) = (0..1).map { readLine()!!.toInt() }
    when {
      N % 2 == 1 && (M/10)%2 == 1 -> "Yes" 
      N % 2 == 0 && M % 2 == 0 -> "Yes"
      else -> "No"
    }.let { println(it) } */
    println("Yes")
}
0