結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-10-06 18:45:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,232 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 11,343 ms
コンパイル使用メモリ 432,804 KB
実行使用メモリ 96,876 KB
最終ジャッジ日時 2024-11-20 16:58:32
合計ジャッジ時間 26,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 354 ms
51,088 KB
testcase_01 AC 350 ms
51,224 KB
testcase_02 AC 351 ms
51,132 KB
testcase_03 AC 348 ms
51,256 KB
testcase_04 AC 350 ms
51,148 KB
testcase_05 AC 365 ms
51,208 KB
testcase_06 AC 470 ms
52,452 KB
testcase_07 AC 550 ms
61,004 KB
testcase_08 AC 750 ms
83,776 KB
testcase_09 AC 816 ms
84,424 KB
testcase_10 AC 1,119 ms
96,876 KB
testcase_11 AC 1,134 ms
95,808 KB
testcase_12 AC 1,133 ms
96,492 KB
testcase_13 AC 1,159 ms
96,540 KB
testcase_14 AC 1,143 ms
96,596 KB
testcase_15 AC 1,191 ms
96,748 KB
testcase_16 AC 1,232 ms
96,744 KB
testcase_17 AC 348 ms
51,180 KB
testcase_18 AC 349 ms
51,156 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val cin = Scanner(System.`in`)
    val N = cin.nextInt()

    var ans = 0.toLong()

    for (i in 1..N) {
        ans += cin.nextLong()
    }

    println(ans)
}
0