結果

問題 No.423 ハムスター語初級(数詞)
ユーザー uafr_csuafr_cs
提出日時 2016-09-22 22:25:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-04-28 18:44:17
合計ジャッジ時間 4,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,080 KB
testcase_01 AC 130 ms
41,312 KB
testcase_02 AC 131 ms
41,380 KB
testcase_03 AC 130 ms
41,448 KB
testcase_04 AC 131 ms
41,048 KB
testcase_05 AC 133 ms
41,188 KB
testcase_06 AC 133 ms
41,084 KB
testcase_07 AC 131 ms
41,056 KB
testcase_08 AC 131 ms
41,184 KB
testcase_09 AC 132 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static long toLong(String ham){
		return Long.parseLong(ham.replace("hamu", "1").replace("ham", "0"), 2);
	}
	
	public static String toHamu(long val){
		return Long.toBinaryString(val).replace("0", "ham").replace("1", "hamu");
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		System.out.println(toHamu(toLong(sc.next()) * 2));
	}

}
0