結果

問題 No.2925 2-Letter Shiritori
ユーザー friedricefriedrice
提出日時 2024-12-26 13:47:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,181 bytes
コンパイル時間 7,383 ms
コンパイル使用メモリ 317,488 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-12-26 13:47:49
合計ジャッジ時間 45,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using ull = unsigned long long;
using mint = atcoder::modint998244353;
using maxt = atcoder::modint1000000007;
vector<ll> Era(int N) {
  vector<ll> ans(0, 0);
  vector<bool> isprime(N + 1, true);
  isprime.at(1) = false;
  for(int i = 1; i <= N; i++) {
    if(isprime.at(i)) {
      ans.push_back(i);
      for(int j = 2 * i; j <= N; j += i) {
        isprime.at(j) = false;
      }
    }
  }
  return ans;
}
ll POW(ll a, int N) {
  if(N == 1) {
    return a;
  }
  ll ans = POW(a, N / 2) * POW(a, N / 2);
  if(N % 2 == 1) {
    ans *= a;
  }
  return ans;
}

//ライブラリここまで

int main() {
  int alpha;
  cin >> alpha;
  set<string> str;
  for(int i = 0; i < 26; i++) {
    for(int j = 0; j < 26; j++) {
      string tmp = "";
      tmp += (char)(i + 65);
      tmp += (char)(j + 65);
      str.insert(tmp);
    }
  }
  char ans = '?';
  while(ans != '!') {
    string tmp = "";
    for(string o : str) {
      if(o.at(0) == alpha) {
        cout << o << endl;
        tmp = o;
        break;
      }
    }
    str.erase(tmp);
    cin >> ans >> tmp;
    str.erase(tmp);
  }
}
0