結果

問題 No.480 合計
ユーザー rutilicusrutilicus
提出日時 2020-08-30 20:35:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 9,762 ms
コンパイル使用メモリ 429,064 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-04-27 13:08:26
合計ジャッジ時間 16,776 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
54,204 KB
testcase_01 AC 258 ms
54,268 KB
testcase_02 AC 256 ms
54,436 KB
testcase_03 AC 248 ms
54,244 KB
testcase_04 AC 249 ms
54,280 KB
testcase_05 AC 251 ms
54,176 KB
testcase_06 AC 249 ms
54,160 KB
testcase_07 AC 263 ms
54,216 KB
testcase_08 AC 266 ms
54,224 KB
testcase_09 AC 262 ms
54,164 KB
testcase_10 AC 266 ms
54,340 KB
testcase_11 AC 243 ms
54,160 KB
testcase_12 AC 252 ms
54,132 KB
testcase_13 AC 246 ms
54,272 KB
testcase_14 AC 253 ms
54,136 KB
testcase_15 AC 248 ms
54,132 KB
testcase_16 AC 253 ms
54,132 KB
testcase_17 AC 250 ms
54,244 KB
testcase_18 AC 248 ms
54,124 KB
testcase_19 AC 258 ms
54,288 KB
testcase_20 AC 257 ms
54,172 KB
testcase_21 AC 246 ms
54,304 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