結果

問題 No.815 Are you a traveller ?
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 14:20:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 10,659 ms
コンパイル使用メモリ 422,640 KB
実行使用メモリ 49,848 KB
最終ジャッジ日時 2024-11-20 18:12:37
合計ジャッジ時間 11,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
49,552 KB
testcase_01 AC 261 ms
49,652 KB
testcase_02 AC 264 ms
49,848 KB
testcase_03 AC 277 ms
49,848 KB
testcase_04 AC 261 ms
49,612 KB
testcase_05 AC 266 ms
49,644 KB
testcase_06 AC 258 ms
49,612 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

fun main(args:Array<String>){
    readLine()!!.toInt().let {
        when {
            it%2 == 0 -> it/2
            else -> it/2 + 1
        }
    }.let { println(it) }
}
0