結果

問題 No.282 おもりと天秤(2)
ユーザー h_nosonh_noson
提出日時 2016-06-17 20:30:35
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,985 ms / 5,000 ms
コード長 976 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 65,488 KB
実行使用メモリ 25,604 KB
平均クエリ数 220.83
最終ジャッジ日時 2024-07-16 23:59:07
合計ジャッジ時間 19,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,836 KB
testcase_01 AC 29 ms
25,220 KB
testcase_02 AC 26 ms
25,220 KB
testcase_03 AC 25 ms
24,836 KB
testcase_04 AC 24 ms
24,836 KB
testcase_05 AC 26 ms
24,964 KB
testcase_06 AC 30 ms
24,580 KB
testcase_07 AC 24 ms
25,220 KB
testcase_08 AC 29 ms
24,836 KB
testcase_09 AC 23 ms
24,580 KB
testcase_10 AC 497 ms
24,580 KB
testcase_11 AC 1,783 ms
25,604 KB
testcase_12 AC 579 ms
24,836 KB
testcase_13 AC 858 ms
25,220 KB
testcase_14 AC 1,501 ms
24,836 KB
testcase_15 AC 1,760 ms
24,836 KB
testcase_16 AC 125 ms
24,964 KB
testcase_17 AC 770 ms
24,964 KB
testcase_18 AC 1,296 ms
24,836 KB
testcase_19 AC 1,359 ms
24,880 KB
testcase_20 AC 1,954 ms
24,556 KB
testcase_21 AC 1,970 ms
25,196 KB
testcase_22 AC 1,985 ms
24,940 KB
testcase_23 AC 25 ms
24,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;

#define REP(i,s,e) for (i = s; i <= e; i++)
#define rep(i,n) REP (i,0,(int)(n)-1)
#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP (i,(int)(n)-1,0)
#define INF (int)1e8
#define MOD (int)(1e9+7)

typedef long long ll;

int main(void) {
    int n;
    cin >> n;

    int i, j;
    int ans[500];
    rep (i,n) ans[i] = i+1;
    rep (i,n) {
        cout << "? ";
        int rest = n;
        for (j = i % 2; j < n-1; j+=2,rest--)
            cout << ans[j] << " " << ans[j+1] << " ";
        while (rest--)
            cout << "0 0 ";
        cout << endl;
        rest = n;
        char c;
        for (j = i % 2; j < n-1; j+=2,rest--) {
            cin >> c;
            if (c == '>')
                swap(ans[j],ans[j+1]);
        }
        while (rest--) cin >> c;
    }
    cout << "! ";
    rep (i,n) cout << ans[i] << " ";
    cout << endl;
    return 0;
}
0