結果

問題 No.597 concat
ユーザー 💕💖💞💕💖💞
提出日時 2017-12-28 21:30:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 11,382 ms
コンパイル使用メモリ 411,740 KB
実行使用メモリ 53,252 KB
最終ジャッジ日時 2023-08-12 21:44:45
合計ジャッジ時間 17,041 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
52,912 KB
testcase_01 AC 301 ms
52,996 KB
testcase_02 AC 299 ms
52,988 KB
testcase_03 AC 301 ms
53,016 KB
testcase_04 AC 295 ms
53,032 KB
testcase_05 AC 301 ms
53,080 KB
testcase_06 AC 305 ms
53,080 KB
testcase_07 AC 303 ms
52,904 KB
testcase_08 AC 300 ms
53,252 KB
testcase_09 AC 302 ms
52,932 KB
testcase_10 AC 300 ms
52,924 KB
testcase_11 AC 303 ms
52,956 KB
testcase_12 AC 304 ms
53,048 KB
testcase_13 AC 300 ms
53,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  readLine()!!.toInt().let { (1..it).map { readLine()!! }.joinToString("").let { println(it) } }
}
0