結果

問題 No.480 合計
ユーザー Pump0129Pump0129
提出日時 2018-04-01 00:10:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 10,448 ms
コンパイル使用メモリ 427,316 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-04-30 17:58:33
合計ジャッジ時間 18,144 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
54,224 KB
testcase_01 AC 293 ms
54,124 KB
testcase_02 AC 296 ms
54,300 KB
testcase_03 AC 294 ms
54,144 KB
testcase_04 AC 294 ms
54,228 KB
testcase_05 AC 298 ms
54,136 KB
testcase_06 AC 293 ms
54,036 KB
testcase_07 AC 299 ms
54,132 KB
testcase_08 AC 298 ms
54,344 KB
testcase_09 AC 297 ms
54,124 KB
testcase_10 AC 293 ms
54,124 KB
testcase_11 AC 301 ms
54,300 KB
testcase_12 AC 297 ms
54,224 KB
testcase_13 AC 296 ms
54,152 KB
testcase_14 AC 295 ms
54,284 KB
testcase_15 AC 295 ms
54,152 KB
testcase_16 AC 293 ms
54,000 KB
testcase_17 AC 291 ms
54,252 KB
testcase_18 AC 295 ms
54,232 KB
testcase_19 AC 289 ms
54,120 KB
testcase_20 AC 290 ms
54,148 KB
testcase_21 AC 291 ms
54,156 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

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