結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー uchida_tuchida_t
提出日時 2023-04-06 12:53:27
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 140 bytes
コンパイル時間 12,483 ms
コンパイル使用メモリ 426,356 KB
実行使用メモリ 107,424 KB
最終ジャッジ日時 2024-10-02 12:13:02
合計ジャッジ時間 22,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
56,868 KB
testcase_01 AC 308 ms
56,672 KB
testcase_02 AC 307 ms
56,720 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 498 ms
69,656 KB
testcase_10 AC 573 ms
107,260 KB
testcase_11 AC 580 ms
107,212 KB
testcase_12 AC 576 ms
107,424 KB
testcase_13 AC 574 ms
107,136 KB
testcase_14 AC 573 ms
107,312 KB
testcase_15 AC 581 ms
107,216 KB
testcase_16 AC 584 ms
107,144 KB
testcase_17 AC 310 ms
56,652 KB
testcase_18 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.toInt() }
	println(array.sum())
}
0