結果
問題 | No.9006 マルチバイト文字テスト(テスト用) |
ユーザー | l1267976 |
提出日時 | 2017-03-09 14:57:54 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 161 ms / 5,000 ms |
コード長 | 364 bytes |
コンパイル時間 | 4,402 ms |
コンパイル使用メモリ | 76,444 KB |
実行使用メモリ | 55,072 KB |
最終ジャッジ日時 | 2024-06-24 00:03:20 |
合計ジャッジ時間 | 4,823 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 161 ms
54,888 KB |
testcase_01 | AC | 160 ms
55,072 KB |
testcase_02 | AC | 158 ms
54,784 KB |
ソースコード
import java.util.Scanner; public class No9006 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.next(); String result = ""; for (int i = s.length() - 1; i >= 0; i--) { result += s.charAt(i); } System.out.println(result); sc.close(); } }