結果
問題 | No.423 ハムスター語初級(数詞) |
ユーザー | ほげ太郎 |
提出日時 | 2018-02-26 14:37:33 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 493 bytes |
コンパイル時間 | 2,321 ms |
コンパイル使用メモリ | 78,072 KB |
実行使用メモリ | 41,376 KB |
最終ジャッジ日時 | 2024-05-02 22:08:06 |
合計ジャッジ時間 | 3,620 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
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); } }