結果
問題 | No.423 ハムスター語初級(数詞) |
ユーザー | nullzine |
提出日時 | 2017-01-19 20:59:38 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 144 ms / 2,000 ms |
コード長 | 942 bytes |
コンパイル時間 | 2,330 ms |
コンパイル使用メモリ | 77,316 KB |
実行使用メモリ | 42,756 KB |
最終ジャッジ日時 | 2024-06-02 07:01:10 |
合計ジャッジ時間 | 4,107 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
42,132 KB |
testcase_01 | AC | 136 ms
42,400 KB |
testcase_02 | AC | 137 ms
42,356 KB |
testcase_03 | AC | 137 ms
42,564 KB |
testcase_04 | AC | 144 ms
42,420 KB |
testcase_05 | AC | 100 ms
40,136 KB |
testcase_06 | AC | 129 ms
42,264 KB |
testcase_07 | AC | 141 ms
41,892 KB |
testcase_08 | AC | 144 ms
42,348 KB |
testcase_09 | AC | 139 ms
42,756 KB |
ソースコード
/** * Created by nullzine on 2017/01/18. */ public class Main { public static void main(String[] args){ new Main().run(); } private void run(){ System.out.println(bin2Ham(dec2Bin(bin2Dec(ham2Bin(new java.util.Scanner(System.in).nextLine()))*2))); } private int bin2Dec(String str){ int ret=0; for(int i=0;i<str.length();i++){ ret+=Integer.parseInt(str.charAt(str.length()-1-i)+"")*Math.pow(2, i); } return ret; } private String dec2Bin(int n){ if(n==0){ return "0"; } String str=""; while(n!=0){ str=(n%2)+str; n/=2; } return str; } private String bin2Ham(String bin){ return bin.replaceAll("0","ham").replaceAll("1","hamu"); } private String ham2Bin(String ham){ return ham.replaceAll("hamu","1").replaceAll("ham","0"); } }