結果

問題 No.423 ハムスター語初級(数詞)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-17 17:21:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 76,276 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-06-24 12:15:11
合計ジャッジ時間 4,582 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,024 KB
testcase_01 AC 141 ms
53,976 KB
testcase_02 AC 137 ms
53,752 KB
testcase_03 AC 139 ms
54,264 KB
testcase_04 AC 149 ms
54,064 KB
testcase_05 AC 139 ms
53,948 KB
testcase_06 AC 137 ms
54,104 KB
testcase_07 AC 144 ms
53,952 KB
testcase_08 AC 137 ms
54,248 KB
testcase_09 AC 140 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		s = s.replace("hamu","1");
		s = s.replace("ham","0");
		s = s + "0";
		s = s.replace("1","hamu");
		s = s.replace("0","ham");
		System.out.println(s.equals("hamham")==false?s:"ham");
	}
}
0