結果

問題 No.600 かい文回
ユーザー pekempeypekempey
提出日時 2017-11-27 12:40:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 628 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 71,132 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-05-05 13:14:55
合計ジャッジ時間 1,678 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>

using namespace std;

char pt0 = 'k';
char pt1 = 'l';

void step() {
  pt1++;
  if (pt1 > 'z') {
    pt0++;
    pt1 = pt0 + 1;
  }
}

string foo() {
  string ret;
  ret += pt0;
  ret += pt1;
  return ret;
}

string bar() {
  step();
  return foo();
}

string solve(int n) {
  if (n == 1) return bar();
  if (n % 2 == 0) {
    string s = solve(n / 2);
    string t = foo();
    return t + s + t;
  } else {
    string s = solve(n - 1);
    string t = bar();
    return t + s + t;
  }
}

int main() {
  int n;
  cin >> n;
  cout << solve(n) << endl;
}
0