結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー ripityripity
提出日時 2021-11-06 00:45:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 970 bytes
コンパイル時間 2,502 ms
コンパイル使用メモリ 79,644 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-11-06 17:35:57
合計ジャッジ時間 7,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,180 KB
testcase_01 AC 137 ms
53,184 KB
testcase_02 AC 142 ms
54,152 KB
testcase_03 AC 128 ms
54,276 KB
testcase_04 AC 141 ms
54,120 KB
testcase_05 AC 143 ms
54,124 KB
testcase_06 AC 139 ms
54,100 KB
testcase_07 AC 141 ms
54,128 KB
testcase_08 AC 144 ms
54,156 KB
testcase_09 AC 144 ms
54,372 KB
testcase_10 AC 146 ms
53,888 KB
testcase_11 AC 142 ms
54,200 KB
testcase_12 AC 145 ms
54,112 KB
testcase_13 AC 148 ms
54,412 KB
testcase_14 AC 151 ms
53,896 KB
testcase_15 AC 142 ms
53,948 KB
testcase_16 AC 133 ms
53,248 KB
testcase_17 AC 147 ms
54,256 KB
testcase_18 AC 148 ms
54,268 KB
testcase_19 AC 139 ms
54,244 KB
testcase_20 AC 148 ms
54,272 KB
testcase_21 AC 142 ms
54,180 KB
testcase_22 AC 139 ms
54,132 KB
testcase_23 AC 141 ms
54,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        String bin = "";
        int[] cnt = new int[8];
        for( int i = 0; i < s.length(); i++ ) {
            String ch = s.substring(i,i+1);
            int d = Integer.parseInt(ch,16);
            String ad = Integer.toString(d,2);
            bin += ad;
        }
        
        for( int i = bin.length(); i > 0; i-=3 ){
            String row = bin.substring(Math.max(0,i-3),i);
            int k = Integer.parseInt(row,2);
            cnt[k]++;
        }
        
        int max = 0;
        for( int i = 0; i < 8; i++ ) {
            max = Math.max(max,cnt[i]);
        }
        
        for( int i = 0; i < 8; i++ ) {
            if( cnt[i] == max ) {
                System.out.print(i+" ");
            }
        }
        
        System.out.println();
        
    }
    
}
0