結果

問題 No.1149 色塗りゲーム
ユーザー trineutrontrineutron
提出日時 2020-08-08 07:36:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 2,249 ms
コンパイル使用メモリ 192,028 KB
最終ジャッジ日時 2025-01-12 18:46:07
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;
    if (n % 2 == 0) {
        cout << "2 " << n / 2 << endl;
    } else {
        cout << "1 " << (n + 1) / 2 << endl;
    }
    
    for (;;) {
        int t;
        cin >> t;
        if (t == 0) return 0;
        if (t == 1) return 1;
        if (t == 2) return 0;
        
        int k, x;
        cin >> k >> x;
        cout << k << " " << n - x - k + 2 << endl;
    }
}
0