結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,724 KB
testcase_01 AC 99 ms
42,028 KB
testcase_02 AC 104 ms
41,516 KB
testcase_03 AC 111 ms
41,424 KB
testcase_04 AC 119 ms
41,400 KB
testcase_05 AC 117 ms
41,324 KB
testcase_06 AC 118 ms
41,616 KB
testcase_07 AC 105 ms
41,324 KB
testcase_08 AC 108 ms
41,396 KB
testcase_09 AC 119 ms
41,432 KB
testcase_10 AC 107 ms
41,980 KB
testcase_11 AC 118 ms
41,736 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