結果

問題 No.597 concat
ユーザー ichibanshiboriichibanshibori
提出日時 2018-05-03 17:09:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 10,925 ms
コンパイル使用メモリ 430,588 KB
実行使用メモリ 52,068 KB
最終ジャッジ日時 2024-11-20 15:53:53
合計ジャッジ時間 16,553 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
51,892 KB
testcase_01 AC 320 ms
51,620 KB
testcase_02 AC 325 ms
51,600 KB
testcase_03 AC 323 ms
52,068 KB
testcase_04 AC 320 ms
51,852 KB
testcase_05 AC 327 ms
51,624 KB
testcase_06 AC 320 ms
51,708 KB
testcase_07 AC 319 ms
51,784 KB
testcase_08 AC 318 ms
51,744 KB
testcase_09 AC 325 ms
51,664 KB
testcase_10 AC 328 ms
51,684 KB
testcase_11 AC 328 ms
51,744 KB
testcase_12 AC 328 ms
51,936 KB
testcase_13 AC 329 ms
51,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

fun main(args : Array<String>) {
	val N = (readLine() ?: "").run { toInt() }
	val sLst = IntRange(1, N).map { readLine() ?: "" }

	sLst.joinToString("").let { println(it) }
}
0