結果

問題 No.480 合計
ユーザー FoltaFolta
提出日時 2019-05-16 15:49:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 9,978 ms
コンパイル使用メモリ 428,596 KB
実行使用メモリ 56,856 KB
最終ジャッジ日時 2024-11-20 18:27:14
合計ジャッジ時間 17,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
56,732 KB
testcase_01 AC 307 ms
56,632 KB
testcase_02 AC 308 ms
56,696 KB
testcase_03 AC 308 ms
56,840 KB
testcase_04 AC 308 ms
56,840 KB
testcase_05 AC 311 ms
56,780 KB
testcase_06 AC 306 ms
56,732 KB
testcase_07 AC 310 ms
56,732 KB
testcase_08 AC 312 ms
56,736 KB
testcase_09 AC 308 ms
56,812 KB
testcase_10 AC 307 ms
56,848 KB
testcase_11 AC 312 ms
56,740 KB
testcase_12 AC 308 ms
56,848 KB
testcase_13 AC 308 ms
56,728 KB
testcase_14 AC 312 ms
56,856 KB
testcase_15 AC 312 ms
56,652 KB
testcase_16 AC 310 ms
56,796 KB
testcase_17 AC 308 ms
56,756 KB
testcase_18 AC 309 ms
56,828 KB
testcase_19 AC 311 ms
56,804 KB
testcase_20 AC 306 ms
56,724 KB
testcase_21 AC 308 ms
56,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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