結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
57,720 KB
testcase_01 AC 309 ms
57,840 KB
testcase_02 AC 305 ms
57,836 KB
testcase_03 AC 306 ms
57,760 KB
testcase_04 AC 312 ms
57,644 KB
testcase_05 AC 314 ms
57,832 KB
testcase_06 AC 351 ms
57,956 KB
testcase_07 AC 416 ms
62,004 KB
testcase_08 AC 439 ms
64,112 KB
testcase_09 AC 450 ms
65,748 KB
testcase_10 AC 466 ms
82,140 KB
testcase_11 AC 469 ms
82,160 KB
testcase_12 AC 469 ms
84,264 KB
testcase_13 AC 470 ms
84,324 KB
testcase_14 AC 470 ms
84,340 KB
testcase_15 AC 469 ms
84,236 KB
testcase_16 AC 477 ms
91,100 KB
testcase_17 AC 311 ms
57,728 KB
testcase_18 AC 306 ms
57,812 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()
    val ans = LongArray(n, { readLine()!!.toLong() }).sum()
    println(ans)
}
0