結果

問題 No.597 concat
ユーザー ichibanshiboriichibanshibori
提出日時 2018-05-03 17:09:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 15,110 ms
コンパイル使用メモリ 414,472 KB
実行使用メモリ 53,236 KB
最終ジャッジ日時 2023-08-12 23:32:28
合計ジャッジ時間 16,137 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
52,960 KB
testcase_01 AC 295 ms
53,236 KB
testcase_02 AC 293 ms
53,088 KB
testcase_03 AC 293 ms
52,892 KB
testcase_04 AC 298 ms
52,960 KB
testcase_05 AC 293 ms
52,976 KB
testcase_06 AC 290 ms
52,880 KB
testcase_07 AC 295 ms
53,152 KB
testcase_08 AC 297 ms
53,060 KB
testcase_09 AC 301 ms
52,940 KB
testcase_10 AC 296 ms
52,948 KB
testcase_11 AC 293 ms
52,984 KB
testcase_12 AC 295 ms
53,196 KB
testcase_13 AC 300 ms
52,972 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