結果

問題 No.423 ハムスター語初級(数詞)
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 14:41:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 85,592 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-05-02 22:15:29
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,376 KB
testcase_01 AC 133 ms
41,568 KB
testcase_02 AC 115 ms
41,368 KB
testcase_03 AC 121 ms
41,160 KB
testcase_04 AC 121 ms
41,488 KB
testcase_05 AC 113 ms
41,136 KB
testcase_06 AC 126 ms
41,356 KB
testcase_07 AC 114 ms
41,364 KB
testcase_08 AC 111 ms
41,216 KB
testcase_09 AC 115 ms
41,436 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