結果

問題 No.9006 マルチバイト文字テスト(テスト用)
ユーザー juugaya
提出日時 2020-06-13 15:55:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 4,005 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-25 13:03:19
合計ジャッジ時間 5,275 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

 import java.util.Scanner;
     
    public class InputSample {
        public static void main(String[] args) {
            Scanner scan = new Scanner(System.in);
            String str = scan.nextLine();
             StringBuffer a =new StringBuffer(str);
            System.out.println(a.reverse());
            
            scan.close();
        }
    }
0