結果

問題 No.400 鏡
ユーザー uafr_csuafr_cs
提出日時 2016-07-22 22:30:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 3,607 ms
コンパイル使用メモリ 75,064 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-11-06 09:03:28
合計ジャッジ時間 6,018 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,228 KB
testcase_01 AC 107 ms
54,028 KB
testcase_02 AC 109 ms
53,004 KB
testcase_03 AC 132 ms
54,024 KB
testcase_04 AC 122 ms
54,088 KB
testcase_05 AC 124 ms
53,884 KB
testcase_06 AC 126 ms
53,920 KB
testcase_07 AC 127 ms
53,940 KB
testcase_08 AC 131 ms
54,128 KB
testcase_09 AC 128 ms
54,284 KB
testcase_10 AC 128 ms
54,200 KB
testcase_11 AC 123 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		for(final char chs : new StringBuilder(sc.next()).reverse().toString().toCharArray()){
			System.out.print(chs == '<' ? '>' : '<');
		}
		System.out.println();
		
	}

}
0