結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
56,840 KB
testcase_01 AC 300 ms
56,632 KB
testcase_02 AC 302 ms
56,752 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 485 ms
79,072 KB
testcase_11 AC 486 ms
79,196 KB
testcase_12 AC 486 ms
79,224 KB
testcase_13 AC 484 ms
79,096 KB
testcase_14 AC 483 ms
81,284 KB
testcase_15 AC 478 ms
81,136 KB
testcase_16 AC 482 ms
83,172 KB
testcase_17 AC 304 ms
56,688 KB
testcase_18 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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