結果

問題 No.423 ハムスター語初級(数詞)
ユーザー tentententen
提出日時 2020-09-28 23:17:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 76,888 KB
実行使用メモリ 41,828 KB
最終ジャッジ日時 2024-07-02 18:48:30
合計ジャッジ時間 4,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,044 KB
testcase_01 AC 133 ms
41,456 KB
testcase_02 AC 133 ms
41,468 KB
testcase_03 AC 134 ms
41,176 KB
testcase_04 AC 135 ms
41,424 KB
testcase_05 AC 128 ms
41,496 KB
testcase_06 AC 132 ms
41,828 KB
testcase_07 AC 130 ms
41,544 KB
testcase_08 AC 133 ms
41,152 KB
testcase_09 AC 132 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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