結果

問題 No.400 鏡
ユーザー yamax3232yamax3232
提出日時 2018-03-19 13:16:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 4,555 ms
コンパイル使用メモリ 86,272 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-06-10 02:51:28
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,008 KB
testcase_01 AC 99 ms
52,884 KB
testcase_02 AC 98 ms
52,976 KB
testcase_03 AC 112 ms
54,004 KB
testcase_04 AC 111 ms
54,028 KB
testcase_05 AC 110 ms
54,352 KB
testcase_06 AC 100 ms
52,740 KB
testcase_07 AC 111 ms
54,092 KB
testcase_08 AC 112 ms
54,064 KB
testcase_09 AC 114 ms
54,156 KB
testcase_10 AC 110 ms
54,316 KB
testcase_11 AC 110 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main2 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		String str1 =kb.next();
		String str2="";
		for(int i=str1.length()-1;i>=0;i--){
			if(str1.charAt(i)=='>'){
				str2+='<';
			}else if(str1.charAt(i)=='<'){
				str2+='>';
			}
		}

		System.out.println(str2);
	}
}
0