結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー rutilicusrutilicus
提出日時 2020-08-30 20:42:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 11,782 ms
コンパイル使用メモリ 436,064 KB
実行使用メモリ 107,284 KB
最終ジャッジ日時 2024-11-15 15:22:27
合計ジャッジ時間 21,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
56,952 KB
testcase_01 AC 308 ms
56,668 KB
testcase_02 AC 306 ms
56,644 KB
testcase_03 AC 303 ms
56,984 KB
testcase_04 AC 305 ms
56,720 KB
testcase_05 AC 314 ms
56,696 KB
testcase_06 AC 356 ms
57,220 KB
testcase_07 AC 457 ms
59,236 KB
testcase_08 AC 489 ms
65,212 KB
testcase_09 AC 490 ms
65,380 KB
testcase_10 AC 557 ms
107,224 KB
testcase_11 AC 561 ms
107,284 KB
testcase_12 AC 560 ms
107,084 KB
testcase_13 AC 568 ms
107,208 KB
testcase_14 AC 562 ms
107,240 KB
testcase_15 AC 566 ms
107,088 KB
testcase_16 AC 566 ms
107,088 KB
testcase_17 AC 304 ms
56,720 KB
testcase_18 AC 304 ms
56,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:5:13: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(readInputLine().split(" ").sumOf { it.toLong() })
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    readInputLine()
    builder.appendln(readInputLine().split(" ").sumOf { it.toLong() })

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0