結果

問題 No.400 鏡
ユーザー Pump0129Pump0129
提出日時 2018-03-30 03:40:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 11,764 ms
コンパイル使用メモリ 429,372 KB
実行使用メモリ 60,788 KB
最終ジャッジ日時 2024-11-20 15:12:15
合計ジャッジ時間 14,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
60,580 KB
testcase_01 AC 335 ms
60,576 KB
testcase_02 AC 336 ms
60,628 KB
testcase_03 AC 344 ms
60,632 KB
testcase_04 AC 333 ms
60,624 KB
testcase_05 AC 338 ms
60,668 KB
testcase_06 AC 332 ms
60,780 KB
testcase_07 AC 354 ms
60,552 KB
testcase_08 AC 348 ms
60,576 KB
testcase_09 AC 333 ms
60,620 KB
testcase_10 AC 341 ms
60,624 KB
testcase_11 AC 342 ms
60,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

fun main(args: Array<String>) {
    val str = readLine()
    var output = ""

    for (char in str!!.split("")) {
        when (char) {
            ">" -> output = "<" + output
            "<" -> output = ">" + output
        }
    }

    print(output)
}
0