結果

問題 No.400 鏡
ユーザー komkomhkomkomh
提出日時 2019-06-18 15:28:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 9,791 ms
コンパイル使用メモリ 427,804 KB
実行使用メモリ 51,188 KB
最終ジャッジ日時 2024-11-20 18:55:48
合計ジャッジ時間 14,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 301 ms
51,012 KB
testcase_01 AC 301 ms
51,072 KB
testcase_02 AC 302 ms
50,804 KB
testcase_03 AC 299 ms
51,012 KB
testcase_04 AC 302 ms
51,008 KB
testcase_05 AC 304 ms
50,780 KB
testcase_06 AC 304 ms
51,188 KB
testcase_07 AC 305 ms
50,784 KB
testcase_08 AC 301 ms
50,676 KB
testcase_09 AC 303 ms
50,768 KB
testcase_10 AC 305 ms
50,860 KB
testcase_11 AC 305 ms
50,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val S = readLine()!!

    val ans = S
        .replace('<', '_')
        .replace('>', '<')
        .replace('_', '>')
        .reversed()
    println(ans)
}
0