結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー kotakota
提出日時 2022-05-18 11:58:57
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 121 bytes
コンパイル時間 11,087 ms
コンパイル使用メモリ 431,380 KB
実行使用メモリ 107,540 KB
最終ジャッジ日時 2024-09-16 12:53:33
合計ジャッジ時間 21,220 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
56,904 KB
testcase_01 AC 306 ms
56,956 KB
testcase_02 AC 314 ms
56,788 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 534 ms
69,688 KB
testcase_10 AC 619 ms
107,384 KB
testcase_11 AC 595 ms
107,532 KB
testcase_12 AC 588 ms
107,288 KB
testcase_13 AC 577 ms
107,368 KB
testcase_14 AC 586 ms
107,284 KB
testcase_15 AC 580 ms
107,276 KB
testcase_16 AC 594 ms
107,540 KB
testcase_17 AC 310 ms
57,024 KB
testcase_18 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.toInt()}

    println(a.sum())
}
0