結果

問題 No.400 鏡
ユーザー kaoetayakaoetaya
提出日時 2016-11-29 13:22:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 2,941 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-11-27 13:27:17
合計ジャッジ時間 4,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,420 KB
testcase_01 AC 102 ms
40,788 KB
testcase_02 AC 107 ms
41,144 KB
testcase_03 AC 106 ms
40,736 KB
testcase_04 AC 97 ms
40,268 KB
testcase_05 AC 91 ms
39,920 KB
testcase_06 AC 103 ms
41,316 KB
testcase_07 AC 104 ms
41,184 KB
testcase_08 AC 105 ms
41,148 KB
testcase_09 AC 106 ms
41,456 KB
testcase_10 AC 112 ms
40,756 KB
testcase_11 AC 104 ms
40,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class pre {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
		String str = s.next();
		
		for(int i=str.length()-1;i>=0;i--){
			if(str.charAt(i) == '<')
				System.out.print(">");
			else if(str.charAt(i) == '>')
				System.out.print("<");
		}
		
		System.out.println();
    }
}
0