結果

問題 No.400 鏡
ユーザー nCk_cvnCk_cv
提出日時 2016-08-27 15:00:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 2,626 ms
コンパイル使用メモリ 76,348 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-11-08 19:18:18
合計ジャッジ時間 5,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,632 KB
testcase_01 AC 117 ms
41,428 KB
testcase_02 AC 114 ms
40,000 KB
testcase_03 AC 115 ms
41,156 KB
testcase_04 AC 104 ms
41,424 KB
testcase_05 AC 114 ms
41,300 KB
testcase_06 AC 106 ms
41,048 KB
testcase_07 AC 121 ms
40,984 KB
testcase_08 AC 119 ms
41,300 KB
testcase_09 AC 119 ms
41,552 KB
testcase_10 AC 105 ms
41,152 KB
testcase_11 AC 117 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
		public static void main(String[] args) {
			Scanner sc = new Scanner(System.in);
			String in = sc.next();
			String out = "";
			for(int i = 0; i < in.length(); i++) {
				if(in.charAt(in.length() - i - 1) == '>') out += "<";
				else out += ">";
			}
			System.out.println(out);
		}
}
0