結果

問題 No.400 鏡
ユーザー ぴろずぴろず
提出日時 2016-07-22 22:21:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-11-06 08:48:49
合計ジャッジ時間 4,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,020 KB
testcase_01 AC 124 ms
41,296 KB
testcase_02 AC 125 ms
41,132 KB
testcase_03 AC 124 ms
41,196 KB
testcase_04 AC 125 ms
41,184 KB
testcase_05 AC 109 ms
41,176 KB
testcase_06 AC 126 ms
41,240 KB
testcase_07 AC 125 ms
41,036 KB
testcase_08 AC 126 ms
41,240 KB
testcase_09 AC 127 ms
41,528 KB
testcase_10 AC 125 ms
41,364 KB
testcase_11 AC 124 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no401;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		System.out.println(reverse(sc.next()));
	}
	
	public static String reverse(String s) {
		StringBuilder sb = new StringBuilder();
		for(int i=0;i<s.length();i++) {
			sb.append(s.charAt(s.length()-1-i) == '<' ? '>' : '<');
		}
		return sb.toString();
	}

}
0