結果

問題 No.1422 Social Distance in Train
ユーザー leetcoincollectorleetcoincollector
提出日時 2021-03-12 21:36:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 99 bytes
コンパイル時間 10,676 ms
コンパイル使用メモリ 420,728 KB
実行使用メモリ 49,752 KB
最終ジャッジ日時 2024-10-14 11:49:05
合計ジャッジ時間 15,333 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
49,752 KB
testcase_01 AC 275 ms
49,588 KB
testcase_02 AC 271 ms
49,580 KB
testcase_03 AC 270 ms
49,704 KB
testcase_04 AC 263 ms
49,724 KB
testcase_05 AC 267 ms
49,572 KB
testcase_06 AC 262 ms
49,724 KB
testcase_07 AC 271 ms
49,708 KB
testcase_08 AC 267 ms
49,612 KB
testcase_09 AC 267 ms
49,676 KB
testcase_10 AC 269 ms
49,680 KB
testcase_11 AC 265 ms
49,720 KB
testcase_12 AC 266 ms
49,616 KB
testcase_13 AC 268 ms
49,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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