結果

問題 No.276 連続する整数の和(1)
ユーザー おっぺけぺーおっぺけぺー
提出日時 2018-01-23 05:01:12
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 907 ms / 1,000 ms
コード長 129 bytes
コンパイル時間 7,557 ms
コンパイル使用メモリ 258,040 KB
実行使用メモリ 64,428 KB
最終ジャッジ日時 2024-06-30 03:48:42
合計ジャッジ時間 17,741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 876 ms
64,428 KB
testcase_01 AC 895 ms
64,308 KB
testcase_02 AC 874 ms
64,304 KB
testcase_03 AC 873 ms
64,288 KB
testcase_04 AC 868 ms
64,064 KB
testcase_05 AC 869 ms
64,404 KB
testcase_06 AC 861 ms
64,236 KB
testcase_07 AC 891 ms
64,128 KB
testcase_08 AC 907 ms
64,352 KB
testcase_09 AC 885 ms
64,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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