結果
問題 | No.1729 ~サンプルはちゃんと見て!~ 16進数と8進数(1) |
ユーザー | srjywrdnprkt |
提出日時 | 2023-06-03 00:08:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,016 bytes |
コンパイル時間 | 1,389 ms |
コンパイル使用メモリ | 118,456 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 02:34:04 |
合計ジャッジ時間 | 2,055 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#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; }