結果

問題 No.276 連続する整数の和(1)
ユーザー おっぺけぺーおっぺけぺー
提出日時 2018-01-22 00:12:31
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 814 ms / 1,000 ms
コード長 129 bytes
コンパイル時間 7,565 ms
コンパイル使用メモリ 249,736 KB
実行使用メモリ 64,428 KB
最終ジャッジ日時 2024-06-30 03:43:07
合計ジャッジ時間 15,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 784 ms
64,252 KB
testcase_01 AC 772 ms
64,252 KB
testcase_02 AC 782 ms
64,268 KB
testcase_03 AC 772 ms
64,428 KB
testcase_04 AC 767 ms
64,388 KB
testcase_05 AC 758 ms
64,084 KB
testcase_06 AC 790 ms
64,372 KB
testcase_07 AC 770 ms
64,244 KB
testcase_08 AC 780 ms
64,368 KB
testcase_09 AC 814 ms
64,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
    
    val n = scala.io.StdIn.readLine().toLong
    
    println(if (n % 2 == 0) n / 2 else n)
    
}
0