結果
| 問題 | No.2925 2-Letter Shiritori | 
| コンテスト | |
| ユーザー |  titia | 
| 提出日時 | 2024-10-22 04:33:55 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 121 ms / 2,000 ms | 
| コード長 | 143 bytes | 
| コンパイル時間 | 413 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 27,344 KB | 
| 平均クエリ数 | 26.00 | 
| 最終ジャッジ日時 | 2024-10-22 04:33:58 | 
| 合計ジャッジ時間 | 3,115 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 10 | 
ソースコード
a=input().strip()
print("?",a+a,flush=True)
while True:
    x=input().strip()
    if x[0]=="!":
        break
    print("?",x[-1]+a,flush=True)
            
            
            
        