結果
問題 | No.282 おもりと天秤(2) |
ユーザー | 唐澤貴洋 |
提出日時 | 2015-10-13 22:43:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 867 bytes |
コンパイル時間 | 793 ms |
コンパイル使用メモリ | 73,224 KB |
実行使用メモリ | 25,580 KB |
平均クエリ数 | 440.67 |
最終ジャッジ日時 | 2024-07-16 06:28:06 |
合計ジャッジ時間 | 7,163 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 25 ms
24,940 KB |
ソースコード
#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 = f, k = 0; j < a - 1; j += 2,k++) { s += " " + to_string(p[j]) + to_string(p[j + 1]); } for (; k < a * 2; k++) { s+= " 0"; } cout << s << endl; for (j = f,k=0; j < a-1; j+=2,k++) { cin >> c; if (c == '>') { swap(p[j], p[j + 1]); } } for (; k < a; k++) cin >> c; f ^= 1; } cout << '!'; for (i = 0; i < a; i++) { cout <<' '<< p[i]; } cout << endl; }