結果

問題 No.3001 ヘビ文字列
ユーザー kmjpkmjp
提出日時 2025-01-01 10:55:23
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,249 bytes
コンパイル時間 2,609 ms
コンパイル使用メモリ 203,024 KB
実行使用メモリ 18,260 KB
最終ジャッジ日時 2025-01-01 10:56:55
合計ジャッジ時間 91,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 3 ms
13,636 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 2 ms
15,760 KB
testcase_04 AC 3 ms
13,768 KB
testcase_05 AC 2 ms
13,640 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 2 ms
15,752 KB
testcase_08 AC 3 ms
13,640 KB
testcase_09 AC 2 ms
15,748 KB
testcase_10 AC 3 ms
13,640 KB
testcase_11 AC 3 ms
15,884 KB
testcase_12 AC 3 ms
13,764 KB
testcase_13 AC 2 ms
13,640 KB
testcase_14 AC 3 ms
13,772 KB
testcase_15 AC 781 ms
16,012 KB
testcase_16 AC 808 ms
16,016 KB
testcase_17 AC 787 ms
18,064 KB
testcase_18 AC 767 ms
16,012 KB
testcase_19 AC 822 ms
18,064 KB
testcase_20 AC 809 ms
15,888 KB
testcase_21 AC 776 ms
18,256 KB
testcase_22 AC 802 ms
15,976 KB
testcase_23 AC 797 ms
18,260 KB
testcase_24 AC 762 ms
18,252 KB
testcase_25 AC 23 ms
16,008 KB
testcase_26 AC 21 ms
15,876 KB
testcase_27 AC 21 ms
18,128 KB
testcase_28 AC 21 ms
15,884 KB
testcase_29 AC 22 ms
18,124 KB
testcase_30 AC 21 ms
16,016 KB
testcase_31 AC 20 ms
18,184 KB
testcase_32 AC 20 ms
15,880 KB
testcase_33 AC 20 ms
18,132 KB
testcase_34 AC 21 ms
16,020 KB
testcase_35 AC 31 ms
16,008 KB
testcase_36 AC 31 ms
15,916 KB
testcase_37 AC 31 ms
16,144 KB
testcase_38 AC 29 ms
16,016 KB
testcase_39 AC 30 ms
9,068 KB
testcase_40 AC 31 ms
9,096 KB
testcase_41 AC 30 ms
9,060 KB
testcase_42 AC 29 ms
9,064 KB
testcase_43 AC 32 ms
9,096 KB
testcase_44 AC 30 ms
9,096 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 AC 148 ms
7,268 KB
testcase_66 AC 376 ms
8,932 KB
testcase_67 AC 240 ms
9,096 KB
testcase_68 AC 60 ms
7,912 KB
testcase_69 AC 69 ms
7,272 KB
testcase_70 AC 122 ms
8,936 KB
testcase_71 AC 86 ms
6,820 KB
testcase_72 AC 80 ms
7,276 KB
testcase_73 AC 155 ms
6,816 KB
testcase_74 AC 89 ms
8,296 KB
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 AC 2 ms
6,816 KB
testcase_86 AC 2 ms
13,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
string S;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>S;
	N=S.size();
	string R="";
	int num=N+1;
	for(int loop=1;loop<N;loop++) if(N%loop==0) {
		string V=S;
		int sum=0;
		FOR(i,loop) {
			int C[26]={};
			for(x=i;x<N;x+=loop) C[S[x]-'A']++;
			int ma=0;
			FOR(j,26) if(C[j]>C[ma]) ma=j;
			
			FOR(j,26) if(j!=ma) sum+=C[j];
			for(x=i;x<N;x+=loop) V[x]='A'+ma;
		}
		if(sum<num) {
			num=sum;
			R=V;
		}
	}
	cout<<R<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0