結果

問題 No.423 ハムスター語初級(数詞)
ユーザー nullzinenullzine
提出日時 2017-01-18 21:28:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 55,144 KB
最終ジャッジ日時 2024-06-02 06:55:36
合計ジャッジ時間 4,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,456 KB
testcase_01 AC 151 ms
54,580 KB
testcase_02 AC 138 ms
54,852 KB
testcase_03 AC 143 ms
54,716 KB
testcase_04 AC 144 ms
55,144 KB
testcase_05 WA -
testcase_06 AC 132 ms
54,716 KB
testcase_07 AC 132 ms
54,660 KB
testcase_08 AC 146 ms
54,672 KB
testcase_09 AC 143 ms
54,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class Main {

    public static void main(String[] args){
        new Main().run();
    }

    private void run(){
        System.out.println(bin2Ham(dec2Bin(bin2Dec(ham2Bin(new java.util.Scanner(System.in).nextLine()))*2)));
    }

    private int bin2Dec(String str){
        int ret=0;
        for(int i=0;i<str.length();i++){
            ret+=Integer.parseInt(str.charAt(str.length()-1-i)+"")*Math.pow(2, i);
        }
        return ret;
    }

    private String dec2Bin(int n){
        String str="";
        while(n!=0){
            str=(n%2)+str;
            n/=2;
        }
        return str;
    }

    private String bin2Ham(String bin){
        return bin.replaceAll("0","ham").replaceAll("1","hamu");
    }

    private String ham2Bin(String ham){
        return ham.replaceAll("hamu","1").replaceAll("ham","0");
    }

}
0