結果
問題 | No.850 企業コンテスト2位 |
ユーザー | chocorusk |
提出日時 | 2019-03-22 02:19:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 936 bytes |
コンパイル時間 | 809 ms |
コンパイル使用メモリ | 98,420 KB |
実行使用メモリ | 25,716 KB |
平均クエリ数 | 374.32 |
最終ジャッジ日時 | 2024-07-16 16:42:26 |
合計ジャッジ時間 | 6,216 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
25,220 KB |
testcase_01 | AC | 19 ms
25,220 KB |
testcase_02 | AC | 21 ms
25,204 KB |
testcase_03 | AC | 24 ms
25,220 KB |
testcase_04 | AC | 22 ms
25,220 KB |
testcase_05 | AC | 21 ms
24,836 KB |
testcase_06 | AC | 23 ms
24,836 KB |
testcase_07 | AC | 29 ms
24,836 KB |
testcase_08 | AC | 32 ms
24,580 KB |
testcase_09 | AC | 31 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 | AC | 30 ms
24,580 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 20 ms
25,452 KB |
ソースコード
#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; cout<<"? 1 2"<<endl; int ret0; cin>>ret0; int mx, mx2; if(ret0==1) mx=1, mx2=2; else mx=2, mx2=1; for(int i=3; i<=n; i++){ cout<<"? "<<i<<" "<<mx<<endl; int ret; cin>>ret; if(ret==i){ mx2=mx; mx=i; continue; } cout<<"? "<<i<<" "<<mx2<<endl; cin>>ret; if(ret==i){ mx2=i; } } cout<<"! "<<mx2<<endl; return 0; }