結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー da_louisda_louis
提出日時 2020-02-07 00:04:13
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 197 bytes
コンパイル時間 10,990 ms
コンパイル使用メモリ 433,084 KB
実行使用メモリ 88,360 KB
最終ジャッジ日時 2024-09-25 07:02:35
合計ジャッジ時間 18,438 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
57,420 KB
testcase_01 AC 295 ms
57,480 KB
testcase_02 AC 295 ms
57,656 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 457 ms
79,976 KB
testcase_11 AC 455 ms
82,148 KB
testcase_12 AC 457 ms
82,032 KB
testcase_13 AC 452 ms
82,004 KB
testcase_14 AC 450 ms
82,128 KB
testcase_15 AC 453 ms
84,292 KB
testcase_16 AC 460 ms
88,360 KB
testcase_17 AC 292 ms
57,492 KB
testcase_18 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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()!!.toInt() }

    val answer = aList.sum()

    println(answer)
}
0