結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー FoltaFolta
提出日時 2019-05-17 12:19:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 416 ms / 3,000 ms
コード長 132 bytes
コンパイル時間 8,919 ms
コンパイル使用メモリ 431,024 KB
実行使用メモリ 83,260 KB
最終ジャッジ日時 2024-04-30 20:41:04
合計ジャッジ時間 16,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
56,868 KB
testcase_01 AC 257 ms
56,712 KB
testcase_02 AC 259 ms
56,752 KB
testcase_03 AC 256 ms
56,784 KB
testcase_04 AC 261 ms
56,788 KB
testcase_05 AC 270 ms
56,836 KB
testcase_06 AC 297 ms
56,888 KB
testcase_07 AC 358 ms
58,944 KB
testcase_08 AC 377 ms
63,172 KB
testcase_09 AC 396 ms
66,704 KB
testcase_10 AC 410 ms
79,172 KB
testcase_11 AC 413 ms
79,016 KB
testcase_12 AC 406 ms
79,240 KB
testcase_13 AC 410 ms
79,100 KB
testcase_14 AC 405 ms
81,344 KB
testcase_15 AC 410 ms
81,240 KB
testcase_16 AC 416 ms
83,260 KB
testcase_17 AC 256 ms
56,792 KB
testcase_18 AC 263 ms
56,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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