結果

問題 No.400 鏡
ユーザー 37zigen37zigen
提出日時 2016-07-23 00:17:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-11-06 09:59:29
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,960 KB
testcase_01 AC 124 ms
54,092 KB
testcase_02 AC 120 ms
54,104 KB
testcase_03 AC 112 ms
52,920 KB
testcase_04 AC 126 ms
53,952 KB
testcase_05 AC 128 ms
54,016 KB
testcase_06 AC 124 ms
54,048 KB
testcase_07 AC 121 ms
54,008 KB
testcase_08 AC 125 ms
53,972 KB
testcase_09 AC 111 ms
52,888 KB
testcase_10 AC 125 ms
54,084 KB
testcase_11 AC 123 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		StringBuilder sb = new StringBuilder();
		for (int i = s.length() - 1; i >= 0; i--) {
			if (s.charAt(i) == '<') {
				sb.append(">");
			} else if (s.charAt(i) == '>') {
				sb.append("<");
			}else{
				throw new AssertionError();
			}
		}
		System.out.println(sb.toString());
		sc.close();
	}
}
0