結果

問題 No.1422 Social Distance in Train
ユーザー face4face4
提出日時 2021-04-09 00:02:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 9,758 ms
コンパイル使用メモリ 422,276 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-06-24 02:48:32
合計ジャッジ時間 14,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
54,192 KB
testcase_01 AC 282 ms
54,348 KB
testcase_02 AC 284 ms
53,948 KB
testcase_03 AC 284 ms
54,128 KB
testcase_04 AC 283 ms
54,228 KB
testcase_05 AC 287 ms
54,208 KB
testcase_06 AC 282 ms
54,120 KB
testcase_07 AC 284 ms
54,220 KB
testcase_08 AC 284 ms
54,176 KB
testcase_09 AC 286 ms
54,096 KB
testcase_10 AC 288 ms
54,148 KB
testcase_11 AC 284 ms
54,104 KB
testcase_12 AC 280 ms
54,332 KB
testcase_13 AC 286 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val n = readLine()!!.toInt()
    println(if(n%2==1) 1 else n/2+1)
}
0