結果

問題 No.480 合計
ユーザー kotakota
提出日時 2022-05-17 17:05:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 10,368 ms
コンパイル使用メモリ 423,956 KB
実行使用メモリ 49,816 KB
最終ジャッジ日時 2024-09-15 11:53:59
合計ジャッジ時間 18,088 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 287 ms
49,660 KB
testcase_01 AC 282 ms
49,548 KB
testcase_02 AC 284 ms
49,808 KB
testcase_03 AC 282 ms
49,760 KB
testcase_04 AC 287 ms
49,740 KB
testcase_05 AC 285 ms
49,604 KB
testcase_06 AC 285 ms
49,596 KB
testcase_07 AC 287 ms
49,612 KB
testcase_08 AC 285 ms
49,672 KB
testcase_09 AC 284 ms
49,680 KB
testcase_10 AC 283 ms
49,616 KB
testcase_11 AC 283 ms
49,564 KB
testcase_12 AC 284 ms
49,532 KB
testcase_13 AC 287 ms
49,544 KB
testcase_14 AC 286 ms
49,692 KB
testcase_15 AC 284 ms
49,736 KB
testcase_16 AC 284 ms
49,816 KB
testcase_17 AC 283 ms
49,652 KB
testcase_18 AC 283 ms
49,648 KB
testcase_19 AC 283 ms
49,788 KB
testcase_20 AC 283 ms
49,704 KB
testcase_21 AC 282 ms
49,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    var ans = 0
    for (i in 1..n) {
        ans += i
    }
    println(ans)
}
0