結果

問題 No.850 企業コンテスト2位
ユーザー chocoruskchocorusk
提出日時 2019-03-22 01:24:26
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 97,356 KB
実行使用メモリ 25,604 KB
平均クエリ数 387.57
最終ジャッジ日時 2024-07-16 16:41:24
合計ジャッジ時間 5,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,964 KB
testcase_01 AC 20 ms
24,580 KB
testcase_02 AC 20 ms
24,580 KB
testcase_03 AC 20 ms
25,220 KB
testcase_04 AC 19 ms
25,220 KB
testcase_05 AC 21 ms
24,964 KB
testcase_06 AC 21 ms
25,220 KB
testcase_07 AC 28 ms
24,580 KB
testcase_08 AC 30 ms
25,208 KB
testcase_09 AC 34 ms
24,836 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 21 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    int n; cin>>n;
    int mx=1;
    for(int i=2; i<=n; i++){
        cout<<"? "<<i<<" "<<mx<<endl;
        int ret;
        cin>>ret;
        if(ret==i) mx=i;
    }
    int ans=1;
    if(mx==1) ans=2;
    for(int i=1; i<=n; i++){
        if(i==mx || i==ans) continue;
        cout<<"? "<<i<<" "<<ans<<endl;
        int ret;
        cin>>ret;
        if(ret==i) ans=i;
    }
    cout<<"! "<<ans<<endl;
    return 0;
}
0