結果

問題 No.480 合計
ユーザー tk_dango0012tk_dango0012
提出日時 2018-09-04 22:00:16
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 903 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 7,719 ms
コンパイル使用メモリ 258,980 KB
実行使用メモリ 64,488 KB
最終ジャッジ日時 2024-07-01 04:15:24
合計ジャッジ時間 29,550 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 885 ms
64,224 KB
testcase_01 AC 891 ms
64,360 KB
testcase_02 AC 894 ms
64,400 KB
testcase_03 AC 890 ms
64,364 KB
testcase_04 AC 897 ms
64,448 KB
testcase_05 AC 897 ms
64,128 KB
testcase_06 AC 896 ms
64,144 KB
testcase_07 AC 889 ms
64,252 KB
testcase_08 AC 887 ms
64,176 KB
testcase_09 AC 887 ms
64,308 KB
testcase_10 AC 891 ms
64,388 KB
testcase_11 AC 887 ms
64,448 KB
testcase_12 AC 887 ms
64,212 KB
testcase_13 AC 895 ms
64,352 KB
testcase_14 AC 903 ms
64,428 KB
testcase_15 AC 886 ms
64,180 KB
testcase_16 AC 897 ms
64,448 KB
testcase_17 AC 894 ms
64,376 KB
testcase_18 AC 895 ms
64,432 KB
testcase_19 AC 885 ms
64,272 KB
testcase_20 AC 885 ms
64,488 KB
testcase_21 AC 890 ms
64,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main extends App {
    val n = scala.io.StdIn.readInt
    println(n*(n+1)/2)
}
0