結果

問題 No.423 ハムスター語初級(数詞)
ユーザー tomeruntomerun
提出日時 2016-09-22 22:24:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 1,812 ms
コンパイル使用メモリ 76,252 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-11-17 13:33:04
合計ジャッジ時間 3,356 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,576 KB
testcase_01 AC 106 ms
41,216 KB
testcase_02 AC 104 ms
41,164 KB
testcase_03 AC 104 ms
41,280 KB
testcase_04 AC 105 ms
41,348 KB
testcase_05 AC 92 ms
41,340 KB
testcase_06 AC 105 ms
41,716 KB
testcase_07 AC 104 ms
41,224 KB
testcase_08 AC 104 ms
41,484 KB
testcase_09 AC 105 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		String str = sc.next();
		System.out.println(str.equals("ham") ? str : str + "ham");
	}

}
0