結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
56,764 KB
testcase_01 AC 286 ms
56,788 KB
testcase_02 AC 277 ms
56,800 KB
testcase_03 AC 276 ms
56,820 KB
testcase_04 AC 271 ms
56,944 KB
testcase_05 AC 277 ms
56,728 KB
testcase_06 AC 312 ms
56,944 KB
testcase_07 AC 378 ms
58,996 KB
testcase_08 AC 396 ms
63,088 KB
testcase_09 AC 399 ms
66,724 KB
testcase_10 AC 418 ms
79,216 KB
testcase_11 AC 437 ms
79,076 KB
testcase_12 AC 416 ms
79,192 KB
testcase_13 AC 433 ms
79,204 KB
testcase_14 AC 432 ms
81,148 KB
testcase_15 AC 430 ms
81,140 KB
testcase_16 AC 430 ms
83,056 KB
testcase_17 AC 266 ms
56,840 KB
testcase_18 AC 270 ms
56,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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