結果

問題 No.480 合計
ユーザー mnrnmnrn
提出日時 2017-06-11 22:11:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 11,475 ms
コンパイル使用メモリ 428,056 KB
実行使用メモリ 51,364 KB
最終ジャッジ日時 2024-11-20 09:33:46
合計ジャッジ時間 19,304 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
51,292 KB
testcase_01 AC 347 ms
51,272 KB
testcase_02 AC 345 ms
51,020 KB
testcase_03 AC 343 ms
51,036 KB
testcase_04 AC 346 ms
51,220 KB
testcase_05 AC 346 ms
51,028 KB
testcase_06 AC 340 ms
51,272 KB
testcase_07 AC 346 ms
51,184 KB
testcase_08 AC 346 ms
51,112 KB
testcase_09 AC 346 ms
51,020 KB
testcase_10 AC 342 ms
51,152 KB
testcase_11 AC 348 ms
50,976 KB
testcase_12 AC 347 ms
51,268 KB
testcase_13 AC 347 ms
51,032 KB
testcase_14 AC 338 ms
51,092 KB
testcase_15 AC 346 ms
51,260 KB
testcase_16 AC 340 ms
51,296 KB
testcase_17 AC 338 ms
51,364 KB
testcase_18 AC 344 ms
51,264 KB
testcase_19 AC 340 ms
51,112 KB
testcase_20 AC 344 ms
51,268 KB
testcase_21 AC 346 ms
51,212 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val cin = Scanner(System.`in`)
    val n = cin.nextInt()
    println("${n * (n + 1) / 2}")
}
0