結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 17:00:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 452 ms / 3,000 ms
コード長 181 bytes
コンパイル時間 12,066 ms
コンパイル使用メモリ 425,088 KB
実行使用メモリ 75,104 KB
最終ジャッジ日時 2024-11-20 16:57:37
合計ジャッジ時間 19,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
49,872 KB
testcase_01 AC 293 ms
49,696 KB
testcase_02 AC 292 ms
49,628 KB
testcase_03 AC 291 ms
49,572 KB
testcase_04 AC 296 ms
49,828 KB
testcase_05 AC 299 ms
49,684 KB
testcase_06 AC 337 ms
49,936 KB
testcase_07 AC 404 ms
52,516 KB
testcase_08 AC 427 ms
54,696 KB
testcase_09 AC 426 ms
57,116 KB
testcase_10 AC 450 ms
70,176 KB
testcase_11 AC 444 ms
70,776 KB
testcase_12 AC 444 ms
71,412 KB
testcase_13 AC 450 ms
71,872 KB
testcase_14 AC 445 ms
72,484 KB
testcase_15 AC 451 ms
72,652 KB
testcase_16 AC 452 ms
75,104 KB
testcase_17 AC 294 ms
49,652 KB
testcase_18 AC 298 ms
49,820 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 = 0.toLong()

    for (i in 0 until N) {
        ans += readLine()!!.toLong()
    }

    println(ans)
}
0