結果

問題 No.423 ハムスター語初級(数詞)
ユーザー atkrymatkrym
提出日時 2016-10-18 11:41:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-11-22 12:10:53
合計ジャッジ時間 3,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,008 KB
testcase_01 AC 113 ms
39,880 KB
testcase_02 AC 125 ms
41,424 KB
testcase_03 AC 112 ms
40,096 KB
testcase_04 AC 114 ms
40,076 KB
testcase_05 AC 127 ms
41,288 KB
testcase_06 AC 113 ms
40,592 KB
testcase_07 AC 110 ms
39,888 KB
testcase_08 AC 125 ms
41,024 KB
testcase_09 AC 130 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        s = s.replace("hamu", "1");
        s = s.replace("ham", "0");
        
        int ret = Integer.parseInt(s, 2)*2;
        
        s = Integer.toBinaryString(ret);
        
        s = s.replace("1", "hamu");
        s = s.replace("0", "ham");
        
        System.out.println(s);
    }
}
0