結果

問題 No.276 連続する整数の和(1)
ユーザー LeonardoneLeonardone
提出日時 2015-12-07 06:53:10
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 783 ms / 1,000 ms
コード長 192 bytes
コンパイル時間 8,124 ms
コンパイル使用メモリ 257,864 KB
実行使用メモリ 62,820 KB
最終ジャッジ日時 2024-06-29 12:02:33
合計ジャッジ時間 16,977 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 783 ms
62,768 KB
testcase_01 AC 754 ms
62,624 KB
testcase_02 AC 777 ms
62,820 KB
testcase_03 AC 761 ms
62,712 KB
testcase_04 AC 756 ms
62,684 KB
testcase_05 AC 778 ms
62,764 KB
testcase_06 AC 780 ms
62,556 KB
testcase_07 AC 743 ms
62,500 KB
testcase_08 AC 764 ms
62,724 KB
testcase_09 AC 768 ms
62,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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