結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー uchida_tuchida_t
提出日時 2023-04-07 12:47:00
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 438 ms / 3,000 ms
コード長 168 bytes
コンパイル時間 12,187 ms
コンパイル使用メモリ 431,892 KB
実行使用メモリ 75,340 KB
最終ジャッジ日時 2024-10-02 18:31:25
合計ジャッジ時間 20,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
49,832 KB
testcase_01 AC 283 ms
49,820 KB
testcase_02 AC 280 ms
49,936 KB
testcase_03 AC 282 ms
49,948 KB
testcase_04 AC 278 ms
49,976 KB
testcase_05 AC 280 ms
49,816 KB
testcase_06 AC 313 ms
50,376 KB
testcase_07 AC 375 ms
52,652 KB
testcase_08 AC 405 ms
54,848 KB
testcase_09 AC 403 ms
57,348 KB
testcase_10 AC 430 ms
70,672 KB
testcase_11 AC 428 ms
70,964 KB
testcase_12 AC 437 ms
71,400 KB
testcase_13 AC 429 ms
72,092 KB
testcase_14 AC 427 ms
72,480 KB
testcase_15 AC 426 ms
72,980 KB
testcase_16 AC 438 ms
75,340 KB
testcase_17 AC 274 ms
49,696 KB
testcase_18 AC 281 ms
49,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

fun main(args: Array<String>){
	var a = readLine()!!.toInt()
	var sum = 0L
	var num = 0
	while (num != a) {
		sum += readLine()!!.toLong()
		num += 1
	}
	println(sum)
}
0