結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー ks2mks2m
提出日時 2021-11-05 21:33:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 975 bytes
コンパイル時間 2,646 ms
コンパイル使用メモリ 77,636 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-11-06 12:17:53
合計ジャッジ時間 6,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,912 KB
testcase_01 AC 129 ms
54,052 KB
testcase_02 AC 127 ms
53,832 KB
testcase_03 AC 127 ms
53,820 KB
testcase_04 AC 128 ms
53,756 KB
testcase_05 AC 129 ms
53,924 KB
testcase_06 AC 127 ms
54,048 KB
testcase_07 AC 128 ms
53,996 KB
testcase_08 AC 131 ms
53,968 KB
testcase_09 AC 132 ms
54,088 KB
testcase_10 AC 133 ms
54,156 KB
testcase_11 AC 127 ms
54,228 KB
testcase_12 AC 133 ms
54,060 KB
testcase_13 AC 133 ms
54,036 KB
testcase_14 AC 129 ms
54,044 KB
testcase_15 AC 126 ms
54,112 KB
testcase_16 AC 130 ms
54,008 KB
testcase_17 AC 131 ms
53,812 KB
testcase_18 AC 130 ms
53,904 KB
testcase_19 AC 127 ms
53,760 KB
testcase_20 AC 127 ms
53,852 KB
testcase_21 AC 126 ms
53,952 KB
testcase_22 AC 125 ms
53,968 KB
testcase_23 AC 126 ms
54,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		sc.close();

		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < s.length; i++) {
			int a = Integer.parseInt(String.valueOf(s[i]), 16);
			sb.append(Integer.toBinaryString(a));
		}

		int[] cnt = new int[8];
		int start = sb.length() % 3;
		if (start != 0) {
			int a = Integer.parseInt(sb.substring(0, start), 2);
			cnt[a]++;
		}
		for (int i = start; i < sb.length(); i += 3) {
			int a = Integer.parseInt(sb.substring(i, i + 3), 2);
			cnt[a]++;
		}

		int max = 0;
		for (int i = 0; i < cnt.length; i++) {
			max = Math.max(max, cnt[i]);
		}

		StringBuilder sb2 = new StringBuilder();
		for (int i = 0; i < cnt.length; i++) {
			if (cnt[i] == max) {
				sb2.append(i).append(' ');
			}
		}
		sb2.deleteCharAt(sb2.length() - 1);
		System.out.println(sb2.toString());
	}
}
0