結果

問題 No.423 ハムスター語初級(数詞)
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 14:41:53
言語 Java
(openjdk 23)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 76,336 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-11-23 17:16:57
合計ジャッジ時間 4,043 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,304 KB
testcase_01 AC 124 ms
41,384 KB
testcase_02 AC 122 ms
41,000 KB
testcase_03 AC 123 ms
41,240 KB
testcase_04 AC 123 ms
41,408 KB
testcase_05 AC 119 ms
41,104 KB
testcase_06 AC 128 ms
41,200 KB
testcase_07 AC 123 ms
41,264 KB
testcase_08 AC 122 ms
41,392 KB
testcase_09 AC 124 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] p) {
        Scanner q = new Scanner(System.in);
        String str = q.next();
        System.out.println(str.length() == 3 ? str : str + "ham");
    }
}
0