답안 #947312

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
947312 2024-03-15T21:35:24 Z SuPythony Mađioničar (COI22_madionicar) C++17
0 / 100
1066 ms 412 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int n; cin>>n;
    int ans=-1;
    for (int i=n; i>1; i--) {
        for (int j=1; j+i-1<=n; j++) {
            if (j+i-1>n) continue;
            cout<<"? "<<j<<" "<<j+i-1<<endl;
            int res; cin>>res;
            if (res==1) {
                ans=i;
                break;
            }
        }
        if (ans!=-1) break;
    }
    if (ans==-1) ans=1;
    cout<<"! "<<ans<<endl;
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 985 ms 412 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 985 ms 412 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1066 ms 412 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 985 ms 412 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -