답안 #947307

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

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