結果

問題 No.423 ハムスター語初級(数詞)
ユーザー tsunabittsunabit
提出日時 2019-06-08 01:15:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 2,932 ms
コンパイル使用メモリ 79,140 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-10-05 22:12:20
合計ジャッジ時間 4,593 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,060 KB
testcase_01 AC 103 ms
41,416 KB
testcase_02 AC 102 ms
41,004 KB
testcase_03 AC 103 ms
41,044 KB
testcase_04 AC 106 ms
40,852 KB
testcase_05 AC 104 ms
41,020 KB
testcase_06 AC 111 ms
41,188 KB
testcase_07 AC 110 ms
41,156 KB
testcase_08 AC 105 ms
41,052 KB
testcase_09 AC 103 ms
40,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class No423 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        String n = s.next();
        n = n.replace("hamu", "1");
        n = n.replace("ham", "0");
        int dec = Integer.parseInt(n, 2);
        String bin = Integer.toBinaryString(dec * 2);
//        System.out.println(bin);
        bin = bin.replace("1", "hamu");
        bin = bin.replace("0", "ham");
        System.out.println(bin);
    }
}
0