結果

問題 No.254 文字列の構成
ユーザー 沙耶花沙耶花
提出日時 2022-03-22 22:37:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 513 bytes
コンパイル時間 3,795 ms
コンパイル使用メモリ 252,008 KB
最終ジャッジ日時 2025-01-28 11:01:53
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000001


int main(){
	
	int n;
	cin>>n;
	string s = "";
	int cur = 1;
	rep(i,10000000){
		if(cur > n)break;
		n -= cur;
		if(i%2==0)s += 'a';
		else{
			s += 'b';
			cur++;
		}
	}
	char c = 'c';
	while(n!=0){
		s += c;
		n--;
		c++;
		if(c>'z')c = 'c';
	}
	cout<<s<<endl;
	//cout<<s.size()<<endl;
		
	
	return 0;
}
0