結果
問題 |
No.600 かい文回
|
ユーザー |
|
提出日時 | 2017-11-24 23:46:51 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 981 bytes |
コンパイル時間 | 1,575 ms |
コンパイル使用メモリ | 161,504 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-27 08:32:07 |
合計ジャッジ時間 | 3,110 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 WA * 7 |
ソースコード
#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++; } 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; }