結果

問題 No.423 ハムスター語初級(数詞)
ユーザー NASU41NASU41
提出日時 2016-12-23 23:33:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 76,216 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-05-08 12:56:35
合計ジャッジ時間 4,531 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,364 KB
testcase_01 AC 119 ms
41,432 KB
testcase_02 AC 118 ms
40,752 KB
testcase_03 AC 119 ms
41,480 KB
testcase_04 AC 120 ms
41,344 KB
testcase_05 AC 102 ms
39,956 KB
testcase_06 AC 118 ms
41,176 KB
testcase_07 AC 119 ms
41,280 KB
testcase_08 AC 118 ms
41,152 KB
testcase_09 AC 116 ms
41,204 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