結果

問題 No.400 鏡
ユーザー atkrymatkrym
提出日時 2016-11-07 19:53:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-11-25 04:21:11
合計ジャッジ時間 4,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,132 KB
testcase_01 AC 121 ms
53,956 KB
testcase_02 AC 127 ms
53,828 KB
testcase_03 AC 108 ms
54,596 KB
testcase_04 AC 119 ms
53,800 KB
testcase_05 AC 119 ms
53,884 KB
testcase_06 AC 119 ms
53,792 KB
testcase_07 AC 120 ms
53,856 KB
testcase_08 AC 127 ms
53,892 KB
testcase_09 AC 127 ms
53,700 KB
testcase_10 AC 123 ms
53,704 KB
testcase_11 AC 123 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        StringBuilder sb = new StringBuilder();
        for (int i = s.length()-1;i >= 0;i--) {
            char c = s.charAt(i);
            if (c=='<') {
                sb.append('>');
            } else {
                sb.append('<');
            }
        }
        System.out.println(sb.toString());
    }
}
0