結果

問題 No.400 鏡
ユーザー OGNMOGNM
提出日時 2016-11-14 15:47:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 3,502 ms
コンパイル使用メモリ 75,488 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-05-04 13:33:24
合計ジャッジ時間 5,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,280 KB
testcase_01 AC 117 ms
41,092 KB
testcase_02 AC 103 ms
40,052 KB
testcase_03 AC 122 ms
41,232 KB
testcase_04 AC 103 ms
39,832 KB
testcase_05 AC 110 ms
41,152 KB
testcase_06 AC 114 ms
40,048 KB
testcase_07 AC 121 ms
41,092 KB
testcase_08 AC 105 ms
40,060 KB
testcase_09 AC 111 ms
41,140 KB
testcase_10 AC 112 ms
41,048 KB
testcase_11 AC 108 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main_01{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        List<String> list = new ArrayList<String>();
        List ls = new LinkedList();
        String str = sc.nextLine();
        // list.add(str);
        for(int i = 0; i < str.length(); i++){
            if(str.charAt(i) == ('>')){
                list.add(Character.toString('<'));
            }else if(str.charAt(i) == ('<')){
                list.add(Character.toString('>'));

            // list.add(Character.toString(str.charAt(i)));
            }
        }
        Collections.reverse(list);  //要素を逆順にする
        for(String string:list){    //拡張for文
            System.out.print(string);
        }
    }
}
0