結果

問題 No.480 合計
ユーザー rutilicusrutilicus
提出日時 2020-08-30 20:35:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 10,515 ms
コンパイル使用メモリ 429,536 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-11-15 15:16:47
合計ジャッジ時間 18,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
54,328 KB
testcase_01 AC 300 ms
54,148 KB
testcase_02 AC 288 ms
54,148 KB
testcase_03 AC 285 ms
54,224 KB
testcase_04 AC 289 ms
54,204 KB
testcase_05 AC 282 ms
54,156 KB
testcase_06 AC 280 ms
54,228 KB
testcase_07 AC 285 ms
54,052 KB
testcase_08 AC 284 ms
54,180 KB
testcase_09 AC 282 ms
54,192 KB
testcase_10 AC 285 ms
54,212 KB
testcase_11 AC 288 ms
54,176 KB
testcase_12 AC 287 ms
54,168 KB
testcase_13 AC 284 ms
54,188 KB
testcase_14 AC 282 ms
54,160 KB
testcase_15 AC 280 ms
54,032 KB
testcase_16 AC 282 ms
54,180 KB
testcase_17 AC 281 ms
54,216 KB
testcase_18 AC 281 ms
54,212 KB
testcase_19 AC 291 ms
54,212 KB
testcase_20 AC 284 ms
54,172 KB
testcase_21 AC 283 ms
54,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    builder.appendLine(n * (n + 1) / 2)

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0