結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,084 KB
testcase_01 AC 131 ms
41,252 KB
testcase_02 AC 131 ms
41,292 KB
testcase_03 AC 134 ms
41,096 KB
testcase_04 AC 130 ms
40,936 KB
testcase_05 AC 124 ms
41,048 KB
testcase_06 AC 130 ms
41,056 KB
testcase_07 AC 118 ms
40,076 KB
testcase_08 AC 126 ms
40,180 KB
testcase_09 AC 137 ms
41,108 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