結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー da_louisda_louis
提出日時 2020-02-07 00:00:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 592 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 11,051 ms
コンパイル使用メモリ 423,444 KB
実行使用メモリ 107,456 KB
最終ジャッジ日時 2024-09-25 07:02:15
合計ジャッジ時間 21,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
56,876 KB
testcase_01 AC 315 ms
56,840 KB
testcase_02 AC 316 ms
56,704 KB
testcase_03 AC 311 ms
56,716 KB
testcase_04 AC 319 ms
56,660 KB
testcase_05 AC 327 ms
56,960 KB
testcase_06 AC 363 ms
56,868 KB
testcase_07 AC 483 ms
61,068 KB
testcase_08 AC 504 ms
67,552 KB
testcase_09 AC 507 ms
69,616 KB
testcase_10 AC 585 ms
107,240 KB
testcase_11 AC 585 ms
107,224 KB
testcase_12 AC 591 ms
107,456 KB
testcase_13 AC 588 ms
107,224 KB
testcase_14 AC 583 ms
107,260 KB
testcase_15 AC 582 ms
107,236 KB
testcase_16 AC 592 ms
107,228 KB
testcase_17 AC 322 ms
56,752 KB
testcase_18 AC 327 ms
56,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:6:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main(args: Array<String>) {
    p9008()
}

fun p9008() {
    val n = readLine()!!.toInt()
    val aList = readLine()!!.split(' ').map { it.toLong() }

    val answer = aList.sum()

    println(answer)
}
0