結果
問題 | No.850 企業コンテスト2位 |
ユーザー | chocorusk |
提出日時 | 2019-03-23 03:19:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,268 bytes |
コンパイル時間 | 1,006 ms |
コンパイル使用メモリ | 98,516 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 231.75 |
最終ジャッジ日時 | 2024-07-16 16:43:24 |
合計ジャッジ時間 | 5,190 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,580 KB |
testcase_01 | AC | 25 ms
25,476 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 24 ms
25,520 KB |
testcase_05 | AC | 24 ms
24,964 KB |
testcase_06 | AC | 28 ms
25,220 KB |
testcase_07 | AC | 27 ms
25,220 KB |
testcase_08 | AC | 30 ms
25,220 KB |
testcase_09 | AC | 30 ms
24,836 KB |
testcase_10 | AC | 35 ms
24,964 KB |
testcase_11 | AC | 34 ms
24,836 KB |
testcase_12 | AC | 33 ms
24,964 KB |
testcase_13 | AC | 33 ms
24,964 KB |
testcase_14 | AC | 34 ms
25,220 KB |
testcase_15 | AC | 33 ms
24,836 KB |
testcase_16 | AC | 33 ms
25,220 KB |
testcase_17 | AC | 33 ms
24,568 KB |
testcase_18 | AC | 33 ms
24,836 KB |
testcase_19 | AC | 35 ms
24,964 KB |
testcase_20 | WA | - |
testcase_21 | AC | 34 ms
25,220 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 23 ms
25,196 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; int ret; int b[200]; for(int i=1; i<=n/2; i++){ cout<<"? "<<2*i<<" "<<2*i-1<<endl; cin>>ret; b[i]=ret; } if(n&1) b[n/2+1]=n; int mx=b[1], mx2=b[2]; cout<<"? "<<b[1]<<" "<<b[2]<<endl; cin>>ret; if(ret==b[2]) swap(mx, mx2); for(int i=3; i<=(n+1)/2; i++){ cout<<"? "<<mx2<<" "<<b[i]<<endl; cin>>ret; if(ret==mx2) continue; cout<<"? "<<mx<<" "<<b[i]<<endl; cin>>ret; if(ret==mx){ mx2=b[i]; }else{ mx2=mx; mx=b[i]; } } if((n&1) && mx==n){ cout<<"! "<<mx2<<endl; }else{ int x=(mx+1)/2*4-1-mx; cout<<"? "<<mx2<<" "<<x<<endl; cin>>ret; cout<<"! "<<ret<<endl; } return 0; }