結果

問題 No.480 合計
ユーザー momonga_appsmomonga_apps
提出日時 2022-09-25 20:55:35
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 8,984 ms
コンパイル使用メモリ 423,276 KB
実行使用メモリ 49,756 KB
最終ジャッジ日時 2024-12-22 14:16:42
合計ジャッジ時間 16,101 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
49,532 KB
testcase_01 AC 274 ms
49,568 KB
testcase_02 AC 269 ms
49,552 KB
testcase_03 AC 260 ms
49,412 KB
testcase_04 AC 261 ms
49,532 KB
testcase_05 AC 266 ms
49,632 KB
testcase_06 AC 260 ms
49,600 KB
testcase_07 AC 262 ms
49,452 KB
testcase_08 AC 273 ms
49,364 KB
testcase_09 AC 275 ms
49,280 KB
testcase_10 AC 258 ms
49,408 KB
testcase_11 AC 268 ms
49,636 KB
testcase_12 AC 263 ms
49,564 KB
testcase_13 AC 265 ms
49,524 KB
testcase_14 AC 270 ms
49,732 KB
testcase_15 AC 272 ms
49,540 KB
testcase_16 AC 268 ms
49,560 KB
testcase_17 AC 269 ms
49,496 KB
testcase_18 AC 285 ms
49,324 KB
testcase_19 AC 287 ms
49,576 KB
testcase_20 AC 278 ms
49,632 KB
testcase_21 AC 281 ms
49,756 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
	val n = readLine()!!.toInt()
	println(n*(n+1)/2)
}
0