結果

問題 No.423 ハムスター語初級(数詞)
ユーザー atkrymatkrym
提出日時 2016-10-18 11:41:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 41,604 KB
最終ジャッジ日時 2024-05-02 02:27:32
合計ジャッジ時間 3,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,128 KB
testcase_01 AC 108 ms
41,336 KB
testcase_02 AC 107 ms
41,268 KB
testcase_03 AC 95 ms
39,704 KB
testcase_04 AC 96 ms
40,060 KB
testcase_05 AC 106 ms
41,604 KB
testcase_06 AC 108 ms
41,032 KB
testcase_07 AC 107 ms
41,272 KB
testcase_08 AC 98 ms
39,772 KB
testcase_09 AC 104 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        s = s.replace("hamu", "1");
        s = s.replace("ham", "0");
        
        int ret = Integer.parseInt(s, 2)*2;
        
        s = Integer.toBinaryString(ret);
        
        s = s.replace("1", "hamu");
        s = s.replace("0", "ham");
        
        System.out.println(s);
    }
}
0