結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー da_louisda_louis
提出日時 2020-02-07 00:04:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 464 ms / 3,000 ms
コード長 198 bytes
コンパイル時間 11,908 ms
コンパイル使用メモリ 432,928 KB
実行使用メモリ 88,624 KB
最終ジャッジ日時 2024-09-25 07:02:58
合計ジャッジ時間 18,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
57,796 KB
testcase_01 AC 300 ms
57,864 KB
testcase_02 AC 299 ms
57,556 KB
testcase_03 AC 301 ms
57,724 KB
testcase_04 AC 300 ms
57,580 KB
testcase_05 AC 303 ms
57,760 KB
testcase_06 AC 332 ms
57,932 KB
testcase_07 AC 403 ms
61,896 KB
testcase_08 AC 420 ms
64,164 KB
testcase_09 AC 456 ms
67,868 KB
testcase_10 AC 463 ms
80,148 KB
testcase_11 AC 464 ms
82,308 KB
testcase_12 AC 456 ms
82,128 KB
testcase_13 AC 460 ms
82,004 KB
testcase_14 AC 464 ms
82,092 KB
testcase_15 AC 456 ms
84,232 KB
testcase_16 AC 463 ms
88,624 KB
testcase_17 AC 298 ms
57,720 KB
testcase_18 AC 300 ms
57,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    p9009()
}

fun p9009() {
    val n = readLine()!!.toInt()
    val aList = Array(n) { readLine()!!.toLong() }

    val answer = aList.sum()

    println(answer)
}
0