結果

問題 No.423 ハムスター語初級(数詞)
ユーザー GoryudyumaGoryudyuma
提出日時 2017-04-07 20:39:50
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,728 KB
testcase_01 AC 115 ms
54,012 KB
testcase_02 AC 118 ms
54,012 KB
testcase_03 AC 117 ms
53,848 KB
testcase_04 AC 119 ms
54,152 KB
testcase_05 AC 100 ms
52,832 KB
testcase_06 AC 102 ms
52,776 KB
testcase_07 AC 116 ms
54,080 KB
testcase_08 AC 120 ms
53,916 KB
testcase_09 AC 127 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

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