結果
問題 | No.254 文字列の構成 |
ユーザー | 🍮かんプリン |
提出日時 | 2020-05-25 01:05:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 875 bytes |
コンパイル時間 | 1,410 ms |
コンパイル使用メモリ | 159,772 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 15:35:36 |
合計ジャッジ時間 | 6,034 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
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 | WA | - |
testcase_16 | WA | - |
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 | - |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2020.05.25 01:05:50 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; int main() { int n;cin >> n; ll k = 0; while((k + 1) * (k + 6) / 2 + 1 <= n) { k++; } string s; ll cnt = k * (k + 5) / 2 + 1; for (int i = 0; i < k; i++) { s += "ab"; } s += "a"; ll k2 = 0; while((k2 + 1) * (k2 + 6) / 2 + 1 <= n - cnt) { k2++; } ll cnt2 = k2 * (k2 + 5) / 2 + 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; }