結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー FoltaFolta
提出日時 2019-05-17 12:18:33
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 131 bytes
コンパイル時間 10,652 ms
コンパイル使用メモリ 428,096 KB
実行使用メモリ 83,252 KB
最終ジャッジ日時 2024-11-20 18:30:46
合計ジャッジ時間 19,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
56,696 KB
testcase_01 AC 302 ms
56,700 KB
testcase_02 AC 300 ms
56,720 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 478 ms
79,128 KB
testcase_11 AC 480 ms
79,068 KB
testcase_12 AC 480 ms
79,084 KB
testcase_13 AC 477 ms
79,204 KB
testcase_14 AC 474 ms
81,132 KB
testcase_15 AC 483 ms
81,224 KB
testcase_16 AC 485 ms
83,252 KB
testcase_17 AC 306 ms
56,636 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){
    val n = readLine()!!.toInt()
    val list = List(n) {
        readLine()!!.toInt()
    }
    println(list.sum()) 
}
0