Submission #940571

# Submission time Handle Problem Language Result Execution time Memory
940571 2024-03-07T10:50:22 Z LucaIlie Colors (BOI20_colors) C++17
0 / 100
1 ms 344 KB
#include <bits/stdc++.h>

using namespace std;

int query( long long c ) {
    cout << "? " << c << endl;
    int ans;
    cin >> ans;
    return ans;
}

void answer( long long c ) {
    cout << "= " << c << endl;
}

int main() {
    long long n;

    cin >> n;

    long long l = 0, r = n;
    while ( r - l > 1 ) {
        long long c = (l + r) / 2;

        query( 1 );
        if ( query( c + 1 ) )
            r = c;
        else
            l = c;
    }

    answer( r );

    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Hair color 1 was used multiple times
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Hair color 1 was used multiple times
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Hair color 1 was used multiple times
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Hair color 1 was used multiple times
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Hair color 1 was used multiple times
2 Halted 0 ms 0 KB -