結果

問題 No.400 鏡
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-15 23:05:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-28 12:12:16
合計ジャッジ時間 4,420 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,932 KB
testcase_01 AC 127 ms
53,632 KB
testcase_02 AC 128 ms
53,632 KB
testcase_03 AC 127 ms
54,304 KB
testcase_04 AC 125 ms
53,904 KB
testcase_05 AC 125 ms
53,580 KB
testcase_06 AC 127 ms
53,676 KB
testcase_07 AC 128 ms
54,084 KB
testcase_08 AC 121 ms
53,864 KB
testcase_09 AC 127 ms
53,980 KB
testcase_10 AC 127 ms
54,100 KB
testcase_11 AC 127 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String s = in.next();

        for(int i = s.length() - 1; i >= 0; i--) {
            char c = s.charAt(i);
            if(c == '>') System.out.print('<');
            if(c == '<') System.out.print('>');
        }

        System.out.println();
    }
}
0