結果

問題 No.1149 色塗りゲーム
ユーザー mencotton
提出日時 2020-11-02 22:23:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 69,296 KB
実行使用メモリ 25,476 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 07:14:30
合計ジャッジ時間 7,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main() {
    int n;
    cin >> n;
    if (n % 2 == 0)cout << 2 << " " << n / 2 << endl;
    else cout << 1 << " " << n / 2 + 1 << endl;

    while (true) {
        {
            int response;
            cin >> response;
            if (response <= 1)return 0;
        }

        int k, x;
        cin >> k >> x;

        if (k == 1) cout << k << " " << n + 1 - x << endl;
        else cout << k << " " << n - x << endl;
    }
    return 0;
}
0