結果

問題 No.480 合計
ユーザー Pump0129Pump0129
提出日時 2018-04-01 00:10:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 10,403 ms
コンパイル使用メモリ 421,904 KB
実行使用メモリ 49,940 KB
最終ジャッジ日時 2024-11-20 15:16:49
合計ジャッジ時間 18,248 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
49,652 KB
testcase_01 AC 298 ms
49,620 KB
testcase_02 AC 295 ms
49,760 KB
testcase_03 AC 295 ms
49,648 KB
testcase_04 AC 296 ms
49,544 KB
testcase_05 AC 292 ms
49,620 KB
testcase_06 AC 295 ms
49,820 KB
testcase_07 AC 297 ms
49,596 KB
testcase_08 AC 294 ms
49,528 KB
testcase_09 AC 299 ms
49,692 KB
testcase_10 AC 297 ms
49,628 KB
testcase_11 AC 299 ms
49,652 KB
testcase_12 AC 297 ms
49,612 KB
testcase_13 AC 296 ms
49,828 KB
testcase_14 AC 297 ms
49,608 KB
testcase_15 AC 296 ms
49,756 KB
testcase_16 AC 294 ms
49,556 KB
testcase_17 AC 293 ms
49,940 KB
testcase_18 AC 298 ms
49,652 KB
testcase_19 AC 288 ms
49,556 KB
testcase_20 AC 291 ms
49,592 KB
testcase_21 AC 291 ms
49,532 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