結果

問題 No.423 ハムスター語初級(数詞)
ユーザー fal_rndfal_rnd
提出日時 2016-10-27 23:59:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 2,534 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-11-24 05:01:08
合計ジャッジ時間 3,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,228 KB
testcase_01 AC 128 ms
41,144 KB
testcase_02 AC 127 ms
41,116 KB
testcase_03 AC 125 ms
41,168 KB
testcase_04 AC 122 ms
40,856 KB
testcase_05 AC 123 ms
41,440 KB
testcase_06 AC 130 ms
40,960 KB
testcase_07 AC 126 ms
41,092 KB
testcase_08 AC 128 ms
40,980 KB
testcase_09 AC 127 ms
41,104 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