結果

問題 No.254 文字列の構成
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-05-25 01:14:52
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 910 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 144,800 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-02 18:56:55
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 WA -
testcase_16 AC 2 ms
4,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.05.25 01:14:43
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n;cin >> n;
    ll k = 0;
    while((k + 2)*(k + 2) <= n) {
        k++;
    }
    string s;
    ll cnt = (k+1)*(k+1);
    for (int i = 0; i < k; i++) {
        s += "ab";
    }
    s += "a";
    ll k2 = 0;
    while((k2 + 2)*(k2 + 2) <= n - cnt) {
        k2++;
    }
    if (cnt == n) {
        cout << s << endl;
        return 0;
    }
    ll cnt2 = (k2+1)*(k2+1);
    for (int i = 0; i < k2; i++) {
        s += "cd";
    }
    s += "c";
    for (ll i = cnt + cnt2; i < n; i++) {
        s += "e";
        i++;
        if (i < n) {
            s += "f";
            i++;
        }
        if (i < n) {
            s += "g";
            i++;
        }
    }
    //cout << s.size() << endl;
    cout << s << endl;
    return 0;
}
0