結果

問題 No.400 鏡
ユーザー itezpaceitezpace
提出日時 2016-08-15 15:11:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 2,592 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 49,940 KB
最終ジャッジ日時 2024-11-07 17:42:02
合計ジャッジ時間 4,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
49,832 KB
testcase_01 AC 53 ms
49,864 KB
testcase_02 AC 53 ms
49,800 KB
testcase_03 AC 53 ms
49,868 KB
testcase_04 AC 53 ms
49,912 KB
testcase_05 AC 54 ms
49,812 KB
testcase_06 AC 54 ms
49,828 KB
testcase_07 AC 54 ms
49,828 KB
testcase_08 AC 56 ms
49,540 KB
testcase_09 AC 54 ms
49,940 KB
testcase_10 AC 54 ms
49,704 KB
testcase_11 AC 55 ms
49,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.*;
import java.io.*;

class Yuki400{
  public static void main(String[] args) throws IOException {
    DataInputStream d=new DataInputStream(System.in);
    String s=d.readLine();
    for(int i=s.length()-1; i>=0; --i){
      char a;
      a=s.charAt(i);
      if(a=='<'){
        System.out.print('>');
      } else if(a=='>'){
        System.out.print('<');
      }
    }
    System.out.println();
  }
}
0