結果

問題 No.2925 2-Letter Shiritori
ユーザー mahiro0o0o0mahiro0o0o0
提出日時 2024-10-12 16:45:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 3,740 ms
コンパイル使用メモリ 228,736 KB
実行使用メモリ 25,196 KB
平均クエリ数 26.00
最終ジャッジ日時 2024-10-12 16:45:23
合計ジャッジ時間 4,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
24,556 KB
testcase_01 AC 47 ms
25,196 KB
testcase_02 AC 50 ms
25,196 KB
testcase_03 AC 48 ms
25,196 KB
testcase_04 AC 47 ms
25,196 KB
testcase_05 AC 48 ms
24,812 KB
testcase_06 AC 49 ms
25,184 KB
testcase_07 AC 49 ms
24,940 KB
testcase_08 AC 54 ms
24,556 KB
testcase_09 AC 48 ms
24,812 KB
testcase_10 AC 49 ms
24,940 KB
testcase_11 AC 49 ms
24,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
#define rep2(i, k, n) for (ll i = (ll)(k); i < (ll)(n); i++)
#define repM(i, k, n) for (ll i = (ll)(k); i > (ll)(n); i--)
#define all(v) v.begin(), v.end()
using ll = long long;
ll mod = 998244353;

int main() {
  char c;
  cin >> c;
  cout << "? " << c << c << endl << flush;
  cout.flush();
  while(true){
    char j;
    string back, ans;
    cin >> j >> back;
    if(j == '!'){
      break;
      return 0;
    }
    cout << "? " << back[1] << c << endl <<  flush;
  }
  return 0;
}
0