結果

問題 No.3001 ヘビ文字列
ユーザー 👑 NachiaNachia
提出日時 2025-01-01 15:56:09
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 202 ms / 1,500 ms
コード長 1,238 bytes
コンパイル時間 5,404 ms
コンパイル使用メモリ 79,236 KB
実行使用メモリ 9,196 KB
最終ジャッジ日時 2025-01-01 15:56:32
合計ジャッジ時間 19,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 97 ms
9,064 KB
testcase_16 AC 98 ms
9,064 KB
testcase_17 AC 99 ms
9,064 KB
testcase_18 AC 109 ms
9,188 KB
testcase_19 AC 97 ms
9,196 KB
testcase_20 AC 99 ms
9,068 KB
testcase_21 AC 100 ms
9,068 KB
testcase_22 AC 100 ms
9,096 KB
testcase_23 AC 98 ms
9,060 KB
testcase_24 AC 97 ms
9,060 KB
testcase_25 AC 20 ms
7,272 KB
testcase_26 AC 20 ms
7,272 KB
testcase_27 AC 19 ms
7,268 KB
testcase_28 AC 20 ms
7,272 KB
testcase_29 AC 21 ms
7,272 KB
testcase_30 AC 19 ms
7,272 KB
testcase_31 AC 20 ms
7,272 KB
testcase_32 AC 19 ms
7,272 KB
testcase_33 AC 20 ms
7,272 KB
testcase_34 AC 20 ms
7,272 KB
testcase_35 AC 23 ms
7,272 KB
testcase_36 AC 23 ms
7,272 KB
testcase_37 AC 23 ms
7,228 KB
testcase_38 AC 24 ms
7,268 KB
testcase_39 AC 24 ms
7,272 KB
testcase_40 AC 23 ms
7,272 KB
testcase_41 AC 30 ms
7,268 KB
testcase_42 AC 22 ms
7,144 KB
testcase_43 AC 23 ms
7,272 KB
testcase_44 AC 23 ms
7,272 KB
testcase_45 AC 171 ms
8,936 KB
testcase_46 AC 171 ms
9,060 KB
testcase_47 AC 171 ms
9,056 KB
testcase_48 AC 185 ms
9,064 KB
testcase_49 AC 171 ms
9,060 KB
testcase_50 AC 170 ms
9,056 KB
testcase_51 AC 172 ms
8,932 KB
testcase_52 AC 175 ms
9,056 KB
testcase_53 AC 179 ms
9,056 KB
testcase_54 AC 173 ms
9,056 KB
testcase_55 AC 192 ms
9,172 KB
testcase_56 AC 193 ms
9,120 KB
testcase_57 AC 193 ms
9,120 KB
testcase_58 AC 197 ms
9,092 KB
testcase_59 AC 190 ms
9,068 KB
testcase_60 AC 197 ms
9,064 KB
testcase_61 AC 193 ms
9,116 KB
testcase_62 AC 202 ms
9,120 KB
testcase_63 AC 194 ms
9,068 KB
testcase_64 AC 191 ms
9,120 KB
testcase_65 AC 55 ms
7,148 KB
testcase_66 AC 112 ms
8,936 KB
testcase_67 AC 81 ms
9,064 KB
testcase_68 AC 32 ms
7,908 KB
testcase_69 AC 38 ms
7,396 KB
testcase_70 AC 67 ms
8,936 KB
testcase_71 AC 34 ms
6,820 KB
testcase_72 AC 40 ms
7,276 KB
testcase_73 AC 57 ms
6,820 KB
testcase_74 AC 48 ms
8,424 KB
testcase_75 AC 175 ms
9,116 KB
testcase_76 AC 180 ms
9,124 KB
testcase_77 AC 174 ms
9,092 KB
testcase_78 AC 173 ms
9,120 KB
testcase_79 AC 175 ms
9,192 KB
testcase_80 AC 172 ms
9,060 KB
testcase_81 AC 200 ms
9,116 KB
testcase_82 AC 175 ms
9,116 KB
testcase_83 AC 174 ms
9,064 KB
testcase_84 AC 172 ms
9,060 KB
testcase_85 AC 2 ms
6,820 KB
testcase_86 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef NACHIA
#define _GLIBCXX_DEBUG
#else
#define NDEBUG
#endif
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using i64 = long long;
using u64 = unsigned long long;
#define rep(i,n) for(int i=0; i<int(n); i++)
const i64 INF = 1001001001001001001;
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
template<typename A> void chmax(A& l, const A& r){ if(l < r) l = r; }
using namespace std;
#include <atcoder/modint>
using Modint = atcoder::static_modint<998244353>;

void testcase(){
    string S; cin >> S;
    int N = S.size();
    int n = N;
    int ans = N;
    string ansS;
    for(int p=2; p<=N; p++) if(n%p == 0){
        while(n%p == 0) n /= p;
        int tmp = N;
        string tmpS = S;
        int q = N / p;
        rep(k,q){
            int X[26] = {};
            for(int x=k; x<N; x+=q) X[S[x]-'A'] += 1;
            char f = 'A' + (max_element(X, X+26) - X);
            for(int x=k; x<N; x+=q) tmpS[x] = f;
            tmp -= X[f - 'A'];
        }
        if(ans > tmp){
            swap(ansS, tmpS);
            swap(ans, tmp);
        }
    }
    cout << ansS << endl;
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    testcase();
    return 0;
}
0