結果

問題 No.597 concat
ユーザー 💕💖💞💕💖💞
提出日時 2017-12-28 21:30:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 11,030 ms
コンパイル使用メモリ 431,180 KB
実行使用メモリ 57,056 KB
最終ジャッジ日時 2024-11-20 13:38:16
合計ジャッジ時間 16,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
56,860 KB
testcase_01 AC 323 ms
57,004 KB
testcase_02 AC 324 ms
56,872 KB
testcase_03 AC 318 ms
57,056 KB
testcase_04 AC 328 ms
56,900 KB
testcase_05 AC 322 ms
56,908 KB
testcase_06 AC 325 ms
57,032 KB
testcase_07 AC 321 ms
56,976 KB
testcase_08 AC 323 ms
56,976 KB
testcase_09 AC 321 ms
56,852 KB
testcase_10 AC 320 ms
56,832 KB
testcase_11 AC 327 ms
56,976 KB
testcase_12 AC 324 ms
56,876 KB
testcase_13 AC 329 ms
56,792 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