結果

問題 No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1)
ユーザー ktr216ktr216
提出日時 2021-11-05 21:35:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 740 bytes
コンパイル時間 1,889 ms
コンパイル使用メモリ 174,736 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-24 05:22:42
合計ジャッジ時間 2,530 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, l, r) for (int i = (l); i < (r); i++)
using namespace std;

typedef long long ll;

int main() {
    map<char, int> mp;
    rep(i, 0, 10) mp['0' + i] = i;
    rep(i, 0, 6) mp['A' + i] = 10 + i;
    string N;
    cin >> N;
    while (N.size() % 3) N = "0" + N;
    cout << N << endl;
    vector<int> c(8, 0);
    rep(i, 0, N.size() / 3) {
        int x = 0;
        rep(j, 0, 3) {
            x *= 16;
            x += mp[N[i * 3 + j]];
        }
        rep(j, 0, 4) {
            if (x == 0 && i == 0) break;
            c[x % 8]++;
            x /= 8;
        }
    }
    int cmax = 0;
    rep(i, 0, 8) cmax = max(cmax, c[i]);
    rep(i, 0, 8) if (c[i] == cmax) cout << i << " ";
    cout << endl;
}
0