結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kotakota
提出日時 2022-05-18 13:30:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 588 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 12,590 ms
コンパイル使用メモリ 430,380 KB
実行使用メモリ 107,564 KB
最終ジャッジ日時 2024-09-16 14:31:00
合計ジャッジ時間 22,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
56,708 KB
testcase_01 AC 315 ms
56,940 KB
testcase_02 AC 311 ms
56,292 KB
testcase_03 AC 311 ms
56,712 KB
testcase_04 AC 307 ms
56,696 KB
testcase_05 AC 314 ms
56,928 KB
testcase_06 AC 356 ms
57,112 KB
testcase_07 AC 476 ms
60,896 KB
testcase_08 AC 516 ms
67,180 KB
testcase_09 AC 534 ms
69,236 KB
testcase_10 AC 588 ms
106,924 KB
testcase_11 AC 574 ms
106,928 KB
testcase_12 AC 579 ms
107,228 KB
testcase_13 AC 582 ms
106,796 KB
testcase_14 AC 583 ms
107,268 KB
testcase_15 AC 581 ms
106,784 KB
testcase_16 AC 585 ms
107,564 KB
testcase_17 AC 310 ms
56,416 KB
testcase_18 AC 318 ms
56,684 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    val a = readLine()!!.split(" ").map{it.toLong()}

    println(a.sum())
}
0