結果

問題 No.276 連続する整数の和(1)
ユーザー おっぺけぺーおっぺけぺー
提出日時 2018-01-22 00:16:10
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 788 ms / 1,000 ms
コード長 151 bytes
コンパイル時間 8,249 ms
コンパイル使用メモリ 251,716 KB
実行使用メモリ 64,556 KB
最終ジャッジ日時 2024-06-30 03:45:24
合計ジャッジ時間 15,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 770 ms
64,392 KB
testcase_01 AC 775 ms
64,376 KB
testcase_02 AC 762 ms
64,416 KB
testcase_03 AC 756 ms
64,556 KB
testcase_04 AC 762 ms
64,228 KB
testcase_05 AC 770 ms
64,392 KB
testcase_06 AC 788 ms
64,404 KB
testcase_07 AC 767 ms
64,200 KB
testcase_08 AC 761 ms
64,368 KB
testcase_09 AC 781 ms
64,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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