結果

問題 No.276 連続する整数の和(1)
ユーザー おっぺけぺーおっぺけぺー
提出日時 2018-01-22 00:14:28
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 823 ms / 1,000 ms
コード長 150 bytes
コンパイル時間 7,013 ms
コンパイル使用メモリ 252,880 KB
実行使用メモリ 64,504 KB
最終ジャッジ日時 2024-10-06 01:39:06
合計ジャッジ時間 16,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 800 ms
64,240 KB
testcase_01 AC 812 ms
64,376 KB
testcase_02 AC 813 ms
64,376 KB
testcase_03 AC 809 ms
64,488 KB
testcase_04 AC 823 ms
64,504 KB
testcase_05 AC 818 ms
64,288 KB
testcase_06 AC 804 ms
64,420 KB
testcase_07 AC 818 ms
64,364 KB
testcase_08 AC 810 ms
64,412 KB
testcase_09 AC 792 ms
64,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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