結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー firiexpfiriexp
提出日時 2019-04-07 16:30:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 476 ms / 3,000 ms
コード長 125 bytes
コンパイル時間 11,997 ms
コンパイル使用メモリ 426,528 KB
実行使用メモリ 91,224 KB
最終ジャッジ日時 2024-11-20 17:50:07
合計ジャッジ時間 19,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
57,756 KB
testcase_01 AC 312 ms
57,720 KB
testcase_02 AC 310 ms
57,724 KB
testcase_03 AC 312 ms
57,864 KB
testcase_04 AC 309 ms
57,828 KB
testcase_05 AC 320 ms
57,792 KB
testcase_06 AC 357 ms
58,100 KB
testcase_07 AC 420 ms
61,952 KB
testcase_08 AC 436 ms
64,120 KB
testcase_09 AC 443 ms
65,864 KB
testcase_10 AC 472 ms
82,268 KB
testcase_11 AC 470 ms
82,252 KB
testcase_12 AC 471 ms
84,424 KB
testcase_13 AC 472 ms
84,208 KB
testcase_14 AC 472 ms
84,284 KB
testcase_15 AC 475 ms
84,156 KB
testcase_16 AC 476 ms
91,224 KB
testcase_17 AC 312 ms
57,628 KB
testcase_18 AC 312 ms
57,836 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    println(LongArray(n, { readLine()!!.toLong() }).sum())
}
0