結果

問題 No.423 ハムスター語初級(数詞)
ユーザー GoryudyumaGoryudyuma
提出日時 2017-04-07 20:39:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-07-16 00:36:37
合計ジャッジ時間 3,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
        private static int stringtoint(String S){
                return Integer.parseInt(S.replaceAll("hamu", "1").replaceAll("ham", "0"), 2);
        }

        private static String inttostring(int N){
                return Integer.toBinaryString(N).replaceAll("1", "hamu").replaceAll("0", "ham");
        }

        public static void main(String[] args){
                try(Scanner sc = new Scanner(System.in)){
                        System.out.println(inttostring(2*stringtoint(sc.next())));
                }
        }
}
0