結果
| 問題 | 
                            No.9006 マルチバイト文字テスト(テスト用)
                             | 
                    
| ユーザー | 
                             ぴろず
                         | 
                    
| 提出日時 | 2015-03-25 03:04:28 | 
| 言語 | Java  (openjdk 23)  | 
                    
| 結果 | 
                             
                                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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
ソースコード
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());
	}
}
            
            
            
        
            
ぴろず