結果

問題 No.423 ハムスター語初級(数詞)
ユーザー ほげ太郎ほげ太郎
提出日時 2018-02-26 14:37:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 71,448 KB
実行使用メモリ 57,604 KB
最終ジャッジ日時 2023-08-15 10:34:21
合計ジャッジ時間 3,560 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] p) {
        Scanner q = new Scanner(System.in);
        String str = q.next();
        int a = 0;

        for (int i = 0; i < str.length();) {
            if (i + 4 < str.length() && "hamu".equals(str.substring(i, i + 4))) {
                a <<= 1;
                i += 4;
            } else {
                a <<= 0;
                i += 3;
            }
        }
        System.out.println(a);
    }
}
0