結果

問題 No.1149 色塗りゲーム
ユーザー hedwig100hedwig100
提出日時 2020-08-08 12:42:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 1,514 ms
コンパイル使用メモリ 166,528 KB
実行使用メモリ 25,476 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 05:33:33
合計ジャッジ時間 8,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (int)(n); i ++)
#define irep(i,n) for (int i = (int)(n) - 1;i >= 0;--i)
using namespace std;
using ll = long long;
using PL = pair<ll,ll>;
using P = pair<int,int>;
constexpr int INF = 1000000000;
constexpr long long HINF = 1000000000000000;
constexpr long long MOD = 1000000007;// = 998244353;
constexpr double EPS = 1e-4;
constexpr double PI = 3.14159265358979;

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

    while (1) {
        int t;cin >> t;
        if (t <= 1) break;
        else {
            int k,x; cin >> k >> x;
            cout << k << ' ' << N - x - k + 2 << endl;
        }
    }
    return 0;
}
0