結果

問題 No.480 合計
ユーザー FoltaFolta
提出日時 2019-05-16 15:49:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 8,735 ms
コンパイル使用メモリ 428,160 KB
実行使用メモリ 56,876 KB
最終ジャッジ日時 2024-04-30 20:37:06
合計ジャッジ時間 15,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
56,768 KB
testcase_01 AC 251 ms
56,684 KB
testcase_02 AC 268 ms
56,836 KB
testcase_03 AC 268 ms
56,840 KB
testcase_04 AC 262 ms
56,872 KB
testcase_05 AC 263 ms
56,836 KB
testcase_06 AC 263 ms
56,732 KB
testcase_07 AC 267 ms
56,876 KB
testcase_08 AC 261 ms
56,872 KB
testcase_09 AC 257 ms
56,684 KB
testcase_10 AC 271 ms
56,788 KB
testcase_11 AC 262 ms
56,672 KB
testcase_12 AC 255 ms
56,684 KB
testcase_13 AC 258 ms
56,868 KB
testcase_14 AC 274 ms
56,776 KB
testcase_15 AC 266 ms
56,820 KB
testcase_16 AC 265 ms
56,680 KB
testcase_17 AC 272 ms
56,816 KB
testcase_18 AC 276 ms
56,668 KB
testcase_19 AC 267 ms
56,680 KB
testcase_20 AC 273 ms
56,820 KB
testcase_21 AC 275 ms
56,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    val range = 1..n
    println(range.sum().toString())
}
0