結果
| 問題 | No.2925 2-Letter Shiritori |
| コンテスト | |
| ユーザー |
cled0328
|
| 提出日時 | 2024-10-12 15:19:55 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 235 bytes |
| 記録 | |
| コンパイル時間 | 1,027 ms |
| コンパイル使用メモリ | 213,636 KB |
| 実行使用メモリ | 9,280 KB |
| 平均クエリ数 | 3.00 |
| 最終ジャッジ日時 | 2026-07-05 22:34:42 |
| 合計ジャッジ時間 | 2,395 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
string a;cin>>a;
cout<<"? "<<a<<a<<endl;
string p;
for(int i=0;i<26;i++){
cin>>p;
if(p=="!")return 0;
cout<<"? "<<p[1]<<a<<endl;
}
}
cled0328