結果

問題 No.254 文字列の構成
ユーザー climpetclimpet
提出日時 2015-07-25 01:41:54
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 56,840 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-16 04:21:32
合計ジャッジ時間 1,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int main(){
	int n;
	cin >> n;

	string s, t = "ab";
	for(int z = 0; z < 2; ++z){
		if(n > 0){
			s += t[1];
			int p = n - 1;
			for(int i = 2; i * i <= n; ++i){
				s += t;
				p = n - i * i;
			}
			n = p;
		}
		t = "cd";
	}

	for(int i = 0; i < n; ++i){
		s += "sugim"[i % 5];
	}
	
	cout << s << '\n';
}
0