結果

問題 No.9006 マルチバイト文字テスト(テスト用)
ユーザー juugayajuugaya
提出日時 2020-06-13 15:55:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 3,460 ms
コンパイル使用メモリ 72,080 KB
実行使用メモリ 55,568 KB
最終ジャッジ日時 2023-09-07 19:17:39
合計ジャッジ時間 4,314 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
55,568 KB
testcase_01 AC 120 ms
55,556 KB
testcase_02 AC 123 ms
55,520 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