結果
問題 | No.282 おもりと天秤(2) |
ユーザー | 紙ぺーぱー |
提出日時 | 2015-08-24 11:20:35 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 596 bytes |
コンパイル時間 | 687 ms |
コンパイル使用メモリ | 65,816 KB |
実行使用メモリ | 33,584 KB |
平均クエリ数 | 986.96 |
最終ジャッジ日時 | 2024-07-16 05:43:45 |
合計ジャッジ時間 | 13,411 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
24,964 KB |
testcase_01 | AC | 93 ms
24,964 KB |
testcase_02 | AC | 41 ms
24,836 KB |
testcase_03 | AC | 30 ms
24,580 KB |
testcase_04 | AC | 28 ms
24,964 KB |
testcase_05 | AC | 61 ms
25,220 KB |
testcase_06 | AC | 111 ms
25,476 KB |
testcase_07 | AC | 27 ms
25,324 KB |
testcase_08 | AC | 114 ms
25,220 KB |
testcase_09 | AC | 21 ms
25,220 KB |
testcase_10 | RE | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
/* fail */ #include <algorithm> #include <vector> #include <iostream> using namespace std; int n; vector<int>a,q; char op; bool comp(int lhs,int rhs){ q[0]=lhs;q[1]=rhs; cout<<"? "; for(int i=0;i<2*n;i++){ cout<<q[i]; if(i<2*n-1) cout<<' '; } cout<<endl; char tmp; cin>>op; for(int i=0;i<n-1;i++){ cin>>tmp; } return op=='<'; } int main(){ cin>>n; q.assign(2*n,0); a.assign(n,0); for(int i=0;i<n;i++) a[i]=i+1; sort(a.begin(),a.end(),comp); cout<<"! "; for(int i=0;i<n;i++){ cout<<a[i]; if(i<n-1)cout<<' '; } cout<<endl; }