結果

問題 No.2925 2-Letter Shiritori
ユーザー GOTKAKO
提出日時 2024-10-12 14:53:41
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 312 bytes
コンパイル時間 2,006 ms
コンパイル使用メモリ 193,572 KB
最終ジャッジ日時 2025-02-24 17:46:23
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample TLE * 1 -- * 1
other -- * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    char c; cin >> c;
    cout << "? " << c << c << endl; 
    while(true){
        char a,c2; cin >> a >> c2;
        if(a == '!') return 0;
        cout << "? " << c2 << c << endl; 
    }
}
0