結果
問題 | No.600 かい文回 |
ユーザー | pekempey |
提出日時 | 2017-11-27 12:37:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 553 bytes |
コンパイル時間 | 663 ms |
コンパイル使用メモリ | 71,920 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 13:14:44 |
合計ジャッジ時間 | 3,812 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#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) return foo() + solve(n / 2) + foo(); string t = bar(); return t + solve(n - 1) + t; } int main() { int n; cin >> n; cout << solve(n) << endl; }