結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー uchida_tuchida_t
提出日時 2023-04-06 12:56:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 11,382 ms
コンパイル使用メモリ 424,692 KB
実行使用メモリ 107,412 KB
最終ジャッジ日時 2024-10-02 12:16:24
合計ジャッジ時間 21,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
57,076 KB
testcase_01 AC 297 ms
56,808 KB
testcase_02 AC 305 ms
56,836 KB
testcase_03 AC 300 ms
56,924 KB
testcase_04 AC 295 ms
56,824 KB
testcase_05 AC 295 ms
56,924 KB
testcase_06 AC 332 ms
56,952 KB
testcase_07 AC 443 ms
61,332 KB
testcase_08 AC 472 ms
67,592 KB
testcase_09 AC 482 ms
69,788 KB
testcase_10 AC 562 ms
107,400 KB
testcase_11 AC 570 ms
107,356 KB
testcase_12 AC 561 ms
107,392 KB
testcase_13 AC 571 ms
107,312 KB
testcase_14 AC 562 ms
107,376 KB
testcase_15 AC 558 ms
107,412 KB
testcase_16 AC 575 ms
107,404 KB
testcase_17 AC 294 ms
56,988 KB
testcase_18 AC 303 ms
56,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^
Main.kt:2:6: warning: variable 'n' is never used
	val n = readLine()!!.toInt()
     ^

ソースコード

diff #

fun main(args: Array<String>){
	val n = readLine()!!.toInt()
	val array = readLine()!!.split(" ").map { it.toLong() }
	println(array.sum())
}
0