結果

問題 No.400 鏡
ユーザー FVRChanFVRChan
提出日時 2017-10-03 09:52:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 55,948 KB
最終ジャッジ日時 2024-11-16 05:30:57
合計ジャッジ時間 4,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
53,860 KB
testcase_01 AC 111 ms
53,668 KB
testcase_02 AC 92 ms
52,468 KB
testcase_03 AC 105 ms
53,588 KB
testcase_04 AC 103 ms
53,780 KB
testcase_05 AC 101 ms
52,824 KB
testcase_06 AC 113 ms
54,028 KB
testcase_07 AC 106 ms
53,752 KB
testcase_08 AC 105 ms
55,948 KB
testcase_09 AC 105 ms
53,864 KB
testcase_10 AC 105 ms
54,048 KB
testcase_11 AC 107 ms
53,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		char c[]=sc.nextLine().toCharArray(),d[]=new char[c.length];
		for(int i=0;i<c.length;i++){
			d[c.length-i-1]=c[i];
		}for(int i=0;i<d.length;i++){
			if(d[i]=='<')d[i]='>';
			else d[i]='<';
		}System.out.println(String.valueOf(d));
	}
}
0