結果
| 問題 | No.2925 2-Letter Shiritori | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2024-10-12 14:55:21 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 65 ms / 2,000 ms | 
| コード長 | 323 bytes | 
| コンパイル時間 | 1,997 ms | 
| コンパイル使用メモリ | 192,780 KB | 
| 最終ジャッジ日時 | 2025-02-24 17:47:17 | 
| ジャッジサーバーID (参考情報) | judge1 / judge | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 10 | 
ソースコード
#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; string s; cin >> a >> s;
        if(a == '!') return 0;
        cout << "? " << s.at(1) << c << endl; 
    }
}
            
            
            
        