結果

問題 No.423 ハムスター語初級(数詞)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-17 17:19:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 310 bytes
コンパイル時間 2,495 ms
コンパイル使用メモリ 77,748 KB
実行使用メモリ 54,628 KB
最終ジャッジ日時 2024-06-24 12:14:59
合計ジャッジ時間 4,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,320 KB
testcase_01 AC 142 ms
54,176 KB
testcase_02 AC 150 ms
54,312 KB
testcase_03 AC 150 ms
54,100 KB
testcase_04 AC 150 ms
54,028 KB
testcase_05 WA -
testcase_06 AC 148 ms
54,180 KB
testcase_07 AC 151 ms
54,628 KB
testcase_08 AC 132 ms
54,172 KB
testcase_09 AC 130 ms
54,304 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);
	}
}
0