結果

問題 No.480 合計
ユーザー uchida_tuchida_t
提出日時 2023-03-31 12:42:55
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 12,535 ms
コンパイル使用メモリ 430,592 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-09-22 17:32:33
合計ジャッジ時間 19,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
54,020 KB
testcase_01 AC 289 ms
54,052 KB
testcase_02 AC 283 ms
54,192 KB
testcase_03 AC 285 ms
54,208 KB
testcase_04 AC 283 ms
54,052 KB
testcase_05 AC 289 ms
54,096 KB
testcase_06 AC 286 ms
54,172 KB
testcase_07 AC 284 ms
54,096 KB
testcase_08 AC 279 ms
54,088 KB
testcase_09 AC 284 ms
54,080 KB
testcase_10 AC 279 ms
54,200 KB
testcase_11 AC 281 ms
54,056 KB
testcase_12 AC 286 ms
54,044 KB
testcase_13 AC 283 ms
54,076 KB
testcase_14 AC 280 ms
54,164 KB
testcase_15 AC 287 ms
54,100 KB
testcase_16 AC 284 ms
54,124 KB
testcase_17 AC 283 ms
54,080 KB
testcase_18 AC 289 ms
54,212 KB
testcase_19 AC 298 ms
54,052 KB
testcase_20 AC 285 ms
54,196 KB
testcase_21 AC 282 ms
54,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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