結果

問題 No.423 ハムスター語初級(数詞)
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-04 09:43:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 75,956 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-05-05 19:15:48
合計ジャッジ時間 3,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,192 KB
testcase_01 AC 113 ms
40,952 KB
testcase_02 AC 102 ms
40,124 KB
testcase_03 AC 103 ms
39,992 KB
testcase_04 AC 113 ms
41,100 KB
testcase_05 AC 109 ms
41,052 KB
testcase_06 AC 121 ms
41,076 KB
testcase_07 AC 115 ms
41,464 KB
testcase_08 AC 117 ms
41,084 KB
testcase_09 AC 116 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Question423
{
	public static void main(String[] str){
		
		Scanner scan = new Scanner(System.in);
		
		String s = scan.next();
		String bin,ham;
		
		if(s.equals("ham")){
			System.out.println("ham");
		}
		else{
			bin = s.replaceAll("hamu","1");
			bin = bin.replaceAll("ham","0");
			bin += "0";
		
			ham = bin.replaceAll("0","ham");
			ham = ham.replaceAll("1","hamu");
			System.out.println(ham);
		}
	}
}
0