結果

問題 No.400 鏡
ユーザー mits58mits58
提出日時 2016-07-23 00:27:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-11-06 10:06:15
合計ジャッジ時間 4,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,928 KB
testcase_01 AC 126 ms
54,012 KB
testcase_02 AC 126 ms
54,048 KB
testcase_03 AC 128 ms
53,972 KB
testcase_04 AC 132 ms
53,992 KB
testcase_05 AC 127 ms
54,052 KB
testcase_06 AC 128 ms
54,116 KB
testcase_07 AC 130 ms
53,900 KB
testcase_08 AC 134 ms
53,784 KB
testcase_09 AC 136 ms
54,132 KB
testcase_10 AC 132 ms
53,984 KB
testcase_11 AC 132 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			String s=(new StringBuilder(sc.next())).reverse().toString();
			for(int i=0;i<s.length();i++) System.out.print(s.charAt(i)=='<' ? '>' : '<');
			System.out.println();
		}
	}
}
0