結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー matsumomatsumo
提出日時 2020-11-14 22:41:21
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 448 ms / 3,000 ms
コード長 829 bytes
コンパイル時間 12,511 ms
コンパイル使用メモリ 430,152 KB
実行使用メモリ 73,412 KB
最終ジャッジ日時 2024-07-23 00:53:30
合計ジャッジ時間 20,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
49,600 KB
testcase_01 AC 288 ms
49,812 KB
testcase_02 AC 292 ms
49,628 KB
testcase_03 AC 288 ms
49,588 KB
testcase_04 AC 288 ms
49,572 KB
testcase_05 AC 295 ms
49,704 KB
testcase_06 AC 298 ms
49,636 KB
testcase_07 AC 359 ms
50,796 KB
testcase_08 AC 373 ms
52,868 KB
testcase_09 AC 381 ms
55,500 KB
testcase_10 AC 448 ms
68,860 KB
testcase_11 AC 387 ms
69,468 KB
testcase_12 AC 388 ms
69,936 KB
testcase_13 AC 434 ms
70,672 KB
testcase_14 AC 430 ms
70,448 KB
testcase_15 AC 419 ms
71,240 KB
testcase_16 AC 393 ms
73,412 KB
testcase_17 AC 290 ms
49,488 KB
testcase_18 AC 291 ms
49,760 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() {
    val n = readInteger()
    var ans = 0L
    repeat(n) {
        ans += readLong()
    }
    out.println(ans)
}

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