結果

問題 No.276 連続する整数の和(1)
ユーザー LeonardoneLeonardone
提出日時 2015-12-07 06:50:29
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 882 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 8,034 ms
コンパイル使用メモリ 255,516 KB
実行使用メモリ 62,856 KB
最終ジャッジ日時 2024-06-29 12:01:59
合計ジャッジ時間 18,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 870 ms
62,856 KB
testcase_01 AC 868 ms
62,632 KB
testcase_02 AC 878 ms
62,544 KB
testcase_03 AC 867 ms
62,568 KB
testcase_04 AC 876 ms
62,732 KB
testcase_05 AC 872 ms
62,548 KB
testcase_06 AC 869 ms
62,648 KB
testcase_07 AC 880 ms
62,652 KB
testcase_08 AC 878 ms
62,608 KB
testcase_09 AC 882 ms
62,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// yukicoder My Practice
// authoer: Leonardone @ NEETSDKASU

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