結果

問題 No.597 concat
ユーザー ichibanshiboriichibanshibori
提出日時 2018-05-03 17:09:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 10,323 ms
コンパイル使用メモリ 430,432 KB
実行使用メモリ 57,112 KB
最終ジャッジ日時 2024-04-30 18:28:01
合計ジャッジ時間 15,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
56,928 KB
testcase_01 AC 276 ms
57,004 KB
testcase_02 AC 275 ms
56,960 KB
testcase_03 AC 278 ms
57,024 KB
testcase_04 AC 284 ms
56,968 KB
testcase_05 AC 286 ms
56,876 KB
testcase_06 AC 287 ms
56,972 KB
testcase_07 AC 288 ms
57,036 KB
testcase_08 AC 272 ms
56,996 KB
testcase_09 AC 281 ms
57,044 KB
testcase_10 AC 277 ms
56,904 KB
testcase_11 AC 270 ms
56,904 KB
testcase_12 AC 268 ms
57,112 KB
testcase_13 AC 274 ms
56,940 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