結果

問題 No.591 (^o^)/
ユーザー da_louisda_louis
提出日時 2020-03-09 23:51:07
言語 Kotlin
(1.9.23)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 276 ms
54,032 KB
testcase_01 AC 278 ms
54,096 KB
testcase_02 AC 278 ms
54,224 KB
testcase_03 AC 279 ms
54,256 KB
testcase_04 AC 278 ms
54,040 KB
testcase_05 AC 280 ms
53,984 KB
testcase_06 AC 277 ms
53,996 KB
testcase_07 AC 279 ms
54,076 KB
testcase_08 AC 278 ms
54,228 KB
testcase_09 AC 279 ms
54,036 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