結果

問題 No.400 鏡
ユーザー jimanojimano
提出日時 2018-01-20 12:38:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 4,932 ms
コンパイル使用メモリ 73,088 KB
実行使用メモリ 36,996 KB
最終ジャッジ日時 2024-06-07 04:02:20
合計ジャッジ時間 4,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,704 KB
testcase_01 AC 48 ms
36,884 KB
testcase_02 AC 48 ms
36,844 KB
testcase_03 AC 48 ms
36,460 KB
testcase_04 AC 49 ms
36,992 KB
testcase_05 AC 49 ms
36,560 KB
testcase_06 AC 50 ms
36,468 KB
testcase_07 AC 49 ms
36,512 KB
testcase_08 AC 49 ms
36,996 KB
testcase_09 AC 48 ms
36,928 KB
testcase_10 AC 49 ms
36,576 KB
testcase_11 AC 49 ms
36,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0400 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			char[] array = br.readLine().toCharArray();
			int length = array.length;
			
			for (int i = 0; i < length / 2; i++) {
				int idx = length - 1 - i;
				if (array[i] == array[idx]) {
					array[i] = (array[i] == '>') ? '<': '>';
					array[idx] = array[i];
				}
			}

			if (length % 2 != 0) {
				char c = array[length / 2];
				array[length / 2] = (c == '>') ? '<': '>';
			}
			System.out.println(array);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0