結果

問題 No.423 ハムスター語初級(数詞)
ユーザー fal_rndfal_rnd
提出日時 2016-10-27 23:59:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-05-03 07:07:25
合計ジャッジ時間 4,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,000 KB
testcase_01 AC 135 ms
41,224 KB
testcase_02 AC 118 ms
40,192 KB
testcase_03 AC 133 ms
41,356 KB
testcase_04 AC 135 ms
41,308 KB
testcase_05 AC 135 ms
40,992 KB
testcase_06 AC 136 ms
41,080 KB
testcase_07 AC 134 ms
41,408 KB
testcase_08 AC 134 ms
41,224 KB
testcase_09 AC 132 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A {
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		String in = s.nextLine().replaceAll("hamu", "1").replaceAll("ham", "0");
		System.out.println(Integer.toBinaryString(Integer.parseInt(in,2)*2).replaceAll("1","hamu").replaceAll("0","ham"));
	}
}
0