結果

問題 No.600 かい文回
ユーザー NekosyndromeNekosyndrome
提出日時 2017-11-24 23:52:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 1,111 ms
コンパイル使用メモリ 161,000 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 11:45:29
合計ジャッジ時間 1,940 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 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 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(x,y,z) for(int x=y;x<=z;x++)
#define FORD(x,y,z) for(int x=y;x>=z;x--)
#define MSET(x,y) memset(x,y,sizeof(x))
#define FOR(x,y) for(__typeof(y.begin()) x=y.begin();x!=y.end();x++)
#define F first
#define S second
#define MP make_pair
#define PB push_back
#define SZ size()
#define M 
void RI(){}
template<typename... T>
void RI( int& head, T&... tail ) {
    scanf("%d",&head);
    RI(tail...);
}
using namespace std;
typedef long long LL;
int n;
string gen(int x, char st)
{
	while(st>'z') st-=26;
	if(x==0) {
		return "";
	}
	if(x==1) {
		string re = "";
		return re+st;
	}
	if(x==2) {
		string re="";
		re+=st;
		re+=st;
		return re;
	}

	string tmp = "";
	if(x%2)
	{
		tmp += st;
		return tmp + gen(x-1, st+1) + tmp;
	}
	else
	{
		int pw = 0;
		while(x%2==0) {
			x/=2;
			pw++;
		}

		if(x==1) pw--;
		REP(i,1,pw+1) tmp += st;
		return tmp + gen(x-1, st+1) + tmp;
	}
}
int main()
{
	while(~scanf("%d",&n))
	{
		cout << gen(n, 'a') << endl;
	}
	return 0;
}

0