結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
55,192 KB
testcase_01 AC 313 ms
55,268 KB
testcase_02 AC 325 ms
55,192 KB
testcase_03 AC 300 ms
55,032 KB
testcase_04 AC 329 ms
55,156 KB
testcase_05 AC 324 ms
55,144 KB
testcase_06 AC 320 ms
55,044 KB
testcase_07 AC 311 ms
55,336 KB
testcase_08 AC 302 ms
55,268 KB
testcase_09 AC 306 ms
55,176 KB
testcase_10 AC 307 ms
55,256 KB
testcase_11 AC 298 ms
55,272 KB
testcase_12 AC 300 ms
55,036 KB
testcase_13 AC 313 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