結果

問題 No.423 ハムスター語初級(数詞)
ユーザー NASU41NASU41
提出日時 2016-12-23 23:33:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 76,024 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-12-14 17:04:37
合計ジャッジ時間 4,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,008 KB
testcase_01 AC 134 ms
54,056 KB
testcase_02 AC 133 ms
54,116 KB
testcase_03 AC 122 ms
52,760 KB
testcase_04 AC 134 ms
54,176 KB
testcase_05 AC 113 ms
52,988 KB
testcase_06 AC 120 ms
52,912 KB
testcase_07 AC 133 ms
53,980 KB
testcase_08 AC 134 ms
54,048 KB
testcase_09 AC 134 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String number = sc.nextLine();
        if(number.equals("ham")) System.out.println("ham");
        else System.out.println(number + "ham");        
    }
}
0