結果

問題 No.423 ハムスター語初級(数詞)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 21:13:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 77,004 KB
実行使用メモリ 41,424 KB
最終ジャッジ日時 2024-05-04 11:25:46
合計ジャッジ時間 3,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,424 KB
testcase_01 AC 110 ms
41,072 KB
testcase_02 AC 101 ms
39,940 KB
testcase_03 AC 104 ms
39,936 KB
testcase_04 AC 112 ms
40,944 KB
testcase_05 AC 107 ms
41,048 KB
testcase_06 AC 111 ms
41,356 KB
testcase_07 AC 111 ms
41,316 KB
testcase_08 AC 107 ms
39,944 KB
testcase_09 AC 110 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String n = sc.next();
        String a = "";
        while( !(n.equals("")) ){
            if( n.indexOf("hamu")==0  ){
                a=a+"1";
                n=n.substring(4);
            }else{
                a=a+"0";
                n=n.substring(3);
            }
        }
        int b = 2*Integer.parseInt(a, 2);
        String c = Integer.toBinaryString(b);
        for(int i=0; i<c.length(); i++){
            if(c.charAt(i)=='1' ){
                System.out.print("hamu");
            }else{
                System.out.print("ham");
            }
        }
        System.out.println();
    }
}
0