結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー matsumomatsumo
提出日時 2020-11-14 22:43:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 787 bytes
コンパイル時間 11,979 ms
コンパイル使用メモリ 434,540 KB
実行使用メモリ 105,968 KB
最終ジャッジ日時 2024-07-23 00:53:59
合計ジャッジ時間 21,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 313 ms
57,244 KB
testcase_01 AC 312 ms
57,152 KB
testcase_02 AC 319 ms
57,124 KB
testcase_03 AC 316 ms
57,080 KB
testcase_04 AC 314 ms
57,108 KB
testcase_05 AC 313 ms
57,144 KB
testcase_06 AC 326 ms
56,936 KB
testcase_07 AC 417 ms
59,820 KB
testcase_08 AC 437 ms
65,988 KB
testcase_09 AC 447 ms
68,112 KB
testcase_10 AC 514 ms
105,872 KB
testcase_11 AC 525 ms
105,952 KB
testcase_12 AC 517 ms
105,968 KB
testcase_13 AC 518 ms
105,752 KB
testcase_14 AC 518 ms
105,732 KB
testcase_15 AC 528 ms
105,872 KB
testcase_16 AC 522 ms
105,888 KB
testcase_17 AC 318 ms
57,140 KB
testcase_18 AC 311 ms
57,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStreamReader
import java.io.PrintWriter

val br = BufferedReader(InputStreamReader(System.`in`))
val out = PrintWriter(System.out)

fun main() {
    br.use {
        out.use {
//        repeat(readInteger()) { solve() }
            solve()
            out.flush()
        }
    }
}

fun solve() {
    readInteger()
    val n = readLongList().sum()
    out.println(n)
}

fun readInteger() = Integer.parseInt(br.readLine())
fun readLong() = java.lang.Long.parseLong(br.readLine())
fun readStringList() = br.readLine()!!.split(' ')
fun readIntegerList() = readStringList().map(Integer::parseInt)
fun readLongList() = readStringList().map(java.lang.Long::parseLong)
fun readDoubleList() = readStringList().map(java.lang.Double::parseDouble)
0