結果

問題 No.400 鏡
ユーザー darknightdarknight
提出日時 2016-11-14 20:59:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 76,040 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-11-26 01:19:58
合計ジャッジ時間 4,733 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,120 KB
testcase_01 AC 132 ms
41,104 KB
testcase_02 AC 132 ms
41,264 KB
testcase_03 AC 133 ms
41,420 KB
testcase_04 AC 132 ms
40,920 KB
testcase_05 AC 135 ms
40,888 KB
testcase_06 AC 134 ms
41,332 KB
testcase_07 AC 129 ms
41,216 KB
testcase_08 AC 131 ms
41,144 KB
testcase_09 AC 130 ms
41,272 KB
testcase_10 AC 127 ms
41,024 KB
testcase_11 AC 130 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
	Scanner sc  = new Scanner(System.in);
        
    int cnt = 0;

	int  i1 = 0 ,i2 = 0, i3 = 0;
	long L1 = 0, L2 = 0, L3 = 0;
	char ch;
	String str = "";
		

    String s1 = sc.next();
    char[] c1 = s1.toCharArray();

        for(int i=c1.length-1;i>=0;i--){
            
           if(c1[i]=='<') str += ">";
           if(c1[i]=='>') str += "<";
           
        }

        System.out.print(str);
        System.out.println();
	}
        
}
0