結果

問題 No.423 ハムスター語初級(数詞)
ユーザー fjafjafjafjafjafja
提出日時 2017-09-03 22:44:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 3,593 ms
コンパイル使用メモリ 75,456 KB
実行使用メモリ 50,676 KB
最終ジャッジ日時 2024-11-06 20:10:09
合計ジャッジ時間 4,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
50,488 KB
testcase_01 AC 62 ms
50,676 KB
testcase_02 AC 61 ms
50,244 KB
testcase_03 AC 62 ms
50,280 KB
testcase_04 AC 62 ms
50,492 KB
testcase_05 AC 55 ms
50,252 KB
testcase_06 AC 64 ms
50,500 KB
testcase_07 AC 63 ms
50,228 KB
testcase_08 AC 62 ms
50,604 KB
testcase_09 AC 62 ms
50,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class N423
{
	public static void main(String[] args) throws IOException
	{
		BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
		String str=br.readLine();
		if(str.equals("ham")){}
		else
		{
			str=str+"ham";
		}

		System.out.println(str);
	}

}
0