結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー srjywrdnprkt
提出日時 2023-06-03 00:08:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,016 bytes
コンパイル時間 1,225 ms
コンパイル使用メモリ 115,580 KB
最終ジャッジ日時 2025-02-13 21:44:13
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

string f(char c){
    int N;
    string S = "";
    if ('0' <= c && c <= '9') N = c-'0';
    else N = c-'A'+10;
    for (int i=3; i>=0; i--){
        if (N & 1<<i) S += '1';
        else S += '0';
    }
    return S;
}

int main(){

    int N, mx=0;
    string S, T="";
    cin >> S;
    for (auto c : S) T += f(c);
    T = string((3 - (T.size() % 3)) % 3, '0') + T;

    map<string, int> mp;
    for (int i=0; i<T.size()/3; i++) mp[T.substr(i*3, 3)]++;
    for (auto [x, y] : mp) mx = max(mx, y);
    for (auto [x, y] : mp){
        if (y == mx){
            int ans=0;
            for (int i=0; i<3; i++){
                if (x[i] == '1') ans += 1<<(2-i);
            }
            cout << ans << " ";
        }
    }
    cout << endl;

    return 0;
}
0