結果

問題 No.591 (^o^)/
ユーザー da_louis
提出日時 2020-03-09 23:51:07
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 13,737 ms
コンパイル使用メモリ 421,256 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-11-15 18:58:44
合計ジャッジ時間 18,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) = p591()
         ^

ソースコード

diff #

fun main(args: Array<String>) = p591()

fun p591() {
    val t1 = readLine()!!
    val t2 = readLine()!!

    val answer = "($t1$t2$t1)/"

    println(answer)
}
0