結果

問題 No.597 concat
ユーザー rkyrky
提出日時 2017-11-25 23:26:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 11,155 ms
コンパイル使用メモリ 425,012 KB
実行使用メモリ 55,368 KB
最終ジャッジ日時 2024-04-30 16:23:14
合計ジャッジ時間 13,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
55,148 KB
testcase_01 AC 300 ms
55,256 KB
testcase_02 AC 289 ms
55,252 KB
testcase_03 AC 286 ms
55,292 KB
testcase_04 AC 287 ms
55,288 KB
testcase_05 AC 286 ms
55,172 KB
testcase_06 AC 288 ms
55,276 KB
testcase_07 AC 291 ms
55,272 KB
testcase_08 AC 285 ms
55,180 KB
testcase_09 AC 283 ms
55,264 KB
testcase_10 AC 287 ms
55,320 KB
testcase_11 AC 291 ms
55,368 KB
testcase_12 AC 283 ms
55,180 KB
testcase_13 AC 284 ms
55,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.*
fun main(args: Array<String>){
	val input = Scanner(System. `in`)
	var str: String = ""
	for(i in 1..input.nextInt()) str += input.next()
	println(str)
}
0