結果
問題 | No.9006 マルチバイト文字テスト(テスト用) |
ユーザー | ぴろず |
提出日時 | 2015-03-25 03:04:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 121 ms / 5,000 ms |
コード長 | 437 bytes |
コンパイル時間 | 1,998 ms |
コンパイル使用メモリ | 74,800 KB |
実行使用メモリ | 41,296 KB |
最終ジャッジ日時 | 2024-06-29 00:46:39 |
合計ジャッジ時間 | 2,869 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
40,884 KB |
testcase_01 | AC | 110 ms
41,296 KB |
testcase_02 | AC | 111 ms
39,876 KB |
ソースコード
package no9005; import java.io.PrintStream; import java.io.UnsupportedEncodingException; import java.util.Scanner; public class Main { public static void main(String[] args) throws UnsupportedEncodingException { Scanner sc = new Scanner(System.in,"UTF-8"); StringBuilder sb = new StringBuilder(); sb.append(sc.next()); PrintStream out = new PrintStream(System.out, true, "UTF-8"); out.println(sb.reverse().toString()); } }