結果

問題 No.400 鏡
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-30 12:58:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-11-27 13:57:23
合計ジャッジ時間 3,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
39,880 KB
testcase_01 AC 111 ms
40,976 KB
testcase_02 AC 108 ms
41,092 KB
testcase_03 AC 101 ms
39,692 KB
testcase_04 AC 97 ms
39,980 KB
testcase_05 AC 114 ms
40,928 KB
testcase_06 AC 99 ms
39,820 KB
testcase_07 AC 110 ms
40,916 KB
testcase_08 AC 99 ms
39,292 KB
testcase_09 AC 101 ms
41,316 KB
testcase_10 AC 107 ms
41,068 KB
testcase_11 AC 111 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Question400
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		StringBuilder strbl = new StringBuilder();
		
		String s = scan.next();
		
		for(int i=0; i<s.length(); i++){
			if(s.charAt(i)=='<')
				strbl.append(">");
			else
				strbl.append("<");
		}
		
		System.out.println(strbl.reverse());
	}
}
0