結果

問題 No.282 おもりと天秤(2)
ユーザー 唐澤貴洋唐澤貴洋
提出日時 2015-10-13 22:32:34
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 830 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 72,692 KB
実行使用メモリ 24,408 KB
平均クエリ数 357.50
最終ジャッジ日時 2023-09-23 06:34:45
合計ジャッジ時間 25,980 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,640 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
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 RE -
testcase_21 WA -
testcase_22 RE -
testcase_23 AC 26 ms
24,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<set>
#include<map>
#include<list>
#include<stack>
#include<queue>
#include<bitset>
#include<array>
#include<algorithm>
#include<cstdio>
#include<string>
#include<cstdlib>
#include<numeric>
#define D long long
#define U unsigned
using namespace std;
D n, m,a, b, d, e, x, y, z;
D i, j, k;
char c,f;
string s;
D p[500];
int main() {
	cin >> a;
	iota(p, p + a, 1);
	f = 0;
	for (i = 0; i < a * 2;i++){
		s = "";
		s +='?';
		for (j = 0; j < a; j++) {
			s += " "+to_string(p[j+f]);
		}
		for (; j < a * 2; j++) {
			s+= " 0";
		}
		cout << s << endl;
		for (j = f; j < ((a-f)&(~0<<1)); j++) {
			cin >> c;
			if (c == '>') {
				swap(p[j], p[j + 1]);
			}
		}
		for (; j < a; j++)
			cin >> c;
		f ^= 1;
	}
	cout << '!';
	for (i = 0; i < a; i++) {
		cout <<' '<< p[i];
	}
	cout << endl;
}
0