結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー uchida_tuchida_t
提出日時 2023-04-06 13:10:40
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 12,105 ms
コンパイル使用メモリ 430,400 KB
実行使用メモリ 107,460 KB
最終ジャッジ日時 2024-10-02 12:26:48
合計ジャッジ時間 21,816 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
56,984 KB
testcase_01 AC 325 ms
56,956 KB
testcase_02 AC 313 ms
56,820 KB
testcase_03 AC 315 ms
56,772 KB
testcase_04 AC 316 ms
56,964 KB
testcase_05 AC 322 ms
56,832 KB
testcase_06 AC 358 ms
57,220 KB
testcase_07 AC 473 ms
61,484 KB
testcase_08 AC 500 ms
67,500 KB
testcase_09 AC 518 ms
69,740 KB
testcase_10 AC 578 ms
107,384 KB
testcase_11 AC 579 ms
107,428 KB
testcase_12 AC 582 ms
107,236 KB
testcase_13 AC 579 ms
107,460 KB
testcase_14 AC 578 ms
107,232 KB
testcase_15 AC 582 ms
107,404 KB
testcase_16 AC 581 ms
107,428 KB
testcase_17 AC 312 ms
56,876 KB
testcase_18 AC 307 ms
56,788 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 array = readLine()!!.split(" ").map { it.toLong() }
	var sum = 0L
	for (j in 0..n-1) {
		sum+=array[j]
	}
	println(sum)
}
0