結果

問題 No.400 鏡
ユーザー atkrymatkrym
提出日時 2016-11-07 19:53:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-05-03 22:57:32
合計ジャッジ時間 4,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,980 KB
testcase_01 AC 127 ms
41,488 KB
testcase_02 AC 128 ms
41,172 KB
testcase_03 AC 128 ms
41,256 KB
testcase_04 AC 128 ms
41,100 KB
testcase_05 AC 124 ms
41,232 KB
testcase_06 AC 128 ms
41,024 KB
testcase_07 AC 128 ms
41,296 KB
testcase_08 AC 127 ms
40,924 KB
testcase_09 AC 112 ms
40,108 KB
testcase_10 AC 113 ms
40,128 KB
testcase_11 AC 129 ms
41,336 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