結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー firiexpfiriexp
提出日時 2019-04-07 16:32:18
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 456 ms / 3,000 ms
コード長 169 bytes
コンパイル時間 12,147 ms
コンパイル使用メモリ 424,828 KB
実行使用メモリ 80,844 KB
最終ジャッジ日時 2024-11-20 17:54:12
合計ジャッジ時間 19,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
54,288 KB
testcase_01 AC 294 ms
54,252 KB
testcase_02 AC 290 ms
54,168 KB
testcase_03 AC 292 ms
54,272 KB
testcase_04 AC 294 ms
54,280 KB
testcase_05 AC 300 ms
54,356 KB
testcase_06 AC 334 ms
54,392 KB
testcase_07 AC 401 ms
58,616 KB
testcase_08 AC 427 ms
60,556 KB
testcase_09 AC 429 ms
62,444 KB
testcase_10 AC 446 ms
76,616 KB
testcase_11 AC 448 ms
76,776 KB
testcase_12 AC 453 ms
76,728 KB
testcase_13 AC 452 ms
76,776 KB
testcase_14 AC 445 ms
76,784 KB
testcase_15 AC 449 ms
78,812 KB
testcase_16 AC 456 ms
80,844 KB
testcase_17 AC 297 ms
54,168 KB
testcase_18 AC 296 ms
54,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    var ans = 0L
    for (i in 0 until n){
        ans += readLine()!!.toLong()
    }
    println(ans)
}
0