結果

問題 No.400 鏡
ユーザー cande398cande398
提出日時 2017-10-08 23:43:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 1,887 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-11-17 05:51:20
合計ジャッジ時間 3,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,216 KB
testcase_01 AC 125 ms
40,776 KB
testcase_02 AC 125 ms
41,268 KB
testcase_03 AC 116 ms
41,404 KB
testcase_04 AC 120 ms
41,040 KB
testcase_05 AC 113 ms
40,936 KB
testcase_06 AC 102 ms
40,028 KB
testcase_07 AC 117 ms
41,344 KB
testcase_08 AC 118 ms
41,048 KB
testcase_09 AC 116 ms
40,780 KB
testcase_10 AC 111 ms
41,276 KB
testcase_11 AC 111 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args){
    String[] str = new Scanner(System.in).next().split("");
    for(int i=str.length-1;i>-1;i--)System.out.print(str[i].equals(">")?"<":">");
    System.out.println();
  }
}
0