結果
問題 | No.600 かい文回 |
ユーザー | Nekosyndrome |
提出日時 | 2017-11-24 23:46:51 |
言語 | C++11 (gcc 11.4.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,248 KB |
ソースコード
#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; }