結果
問題 | No.423 ハムスター語初級(数詞) |
ユーザー | fal_rnd |
提出日時 | 2016-10-27 23:51:37 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 299 bytes |
コンパイル時間 | 2,116 ms |
コンパイル使用メモリ | 74,816 KB |
実行使用メモリ | 41,480 KB |
最終ジャッジ日時 | 2024-05-03 07:07:20 |
合計ジャッジ時間 | 4,132 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
40,016 KB |
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.*; class A { static Scanner s = new Scanner("hamuhamhamu"); public static void main(String[] args) { System.out.println(Integer.toBinaryString(Integer.parseInt(s.nextLine().replaceAll("hamu", "1").replaceAll("ham", "0"),2)*2).replaceAll("1","hamu").replaceAll("0","ham")); } }