結果

問題 No.701 ひとりしりとり
ユーザー ei1333333ei1333333
提出日時 2018-06-15 22:24:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 207,320 KB
実行使用メモリ 36,124 KB
最終ジャッジ日時 2024-06-30 14:59:48
合計ジャッジ時間 4,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
36,060 KB
testcase_01 AC 136 ms
36,036 KB
testcase_02 AC 136 ms
36,124 KB
testcase_03 AC 136 ms
36,104 KB
testcase_04 AC 132 ms
36,016 KB
testcase_05 AC 132 ms
36,064 KB
testcase_06 AC 130 ms
35,956 KB
testcase_07 AC 127 ms
36,092 KB
testcase_08 AC 130 ms
36,100 KB
testcase_09 AC 132 ms
36,064 KB
testcase_10 AC 145 ms
36,068 KB
testcase_11 AC 264 ms
36,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using int64 = long long;

int main() {
  int N;
  cin >> N;
  vector< string > g[2][2];
  for(int i = 0; i < (1 << 19); i++) {
    string x;
    for(int j = 0; j < 19; j++) {
      if((i >> j) & 1) x += 'a';
      else x += 'b';
    }
    g[x.front() == 'b'][x.back() == 'b'].push_back(x);
  }
  int cur = 0;
  while(N > 0) {
    cout << g[cur][cur ^ 1].back();
    if(N == 1) cout << "n";
    cout << endl;
    g[cur][cur ^ 1].pop_back();
    cur ^= 1;
    --N;
  }
}
0