結果

問題 No.9006 マルチバイト文字テスト(テスト用)
ユーザー juugayajuugaya
提出日時 2020-06-13 15:55:20
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,208 KB
testcase_01 AC 151 ms
53,984 KB
testcase_02 AC 154 ms
54,308 KB
権限があれば一括ダウンロードができます

ソースコード

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