結果

問題 No.591 (^o^)/
ユーザー da_louisda_louis
提出日時 2020-03-09 23:51:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 9,608 ms
コンパイル使用メモリ 420,400 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-04-27 15:34:24
合計ジャッジ時間 13,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
54,280 KB
testcase_01 AC 257 ms
54,200 KB
testcase_02 AC 239 ms
53,976 KB
testcase_03 AC 259 ms
54,120 KB
testcase_04 AC 252 ms
54,172 KB
testcase_05 AC 259 ms
54,084 KB
testcase_06 AC 257 ms
54,100 KB
testcase_07 AC 254 ms
54,176 KB
testcase_08 AC 250 ms
54,032 KB
testcase_09 AC 247 ms
54,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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