QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#664604 | #7156. Find the Box | spycoderyt# | 0 | 1ms | 3564kb | C++14 | 747b | 2024-10-21 21:23:39 | 2024-10-21 21:23:44 |
answer
#include <bits/stdc++.h>
using namespace std;
int n,m,x,y;
int main(){
int cnt = 0;
cin>>n>>m;
while(1) {
string st;
for(int i = 0;i<cnt;i++) st.push_back('v');
for(int j = 0;j<m;j++) st.push_back('>');
cout << "? " << st << endl;
cin>>x>>y;
if(y!=m-1) {
cout << "! " << x << " " << y+1 << endl;
return 0;
}
cnt++;
}
}
/*
For C++ programs, first compile it (e.g. with g++ -g -O2 -std=gnu++17 -static
solution.cpp -o solution.out) and then run:
python3 testing_tool.py ./solution.out <<<"4 5 2 3"
/usr/bin/g++ -g -O2 -std=gnu++17 boxbrute.cpp -o solution.out
python3 testing_tool.py ./solution.out <<<"4 5 2 1"
*/
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Acceptable Answer
time: 1ms
memory: 3564kb
input:
4 5 0 4 1 4 2 2
output:
? >>>>> ? v>>>>> ? vv>>>>> ! 2 3
result:
points 0.820 0.82 used 3 queried; score: 82.00