結果

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

ソースコード

diff #

#include <algorithm>
#include <iomanip>
#include <iostream>
using namespace std;

int main() {
  int n, t, k, x;
  cin >> n;
  if (n & 1) {
    cout << "1 " << n / 2 + 1 << endl;
  } else {
    cout << "2 " << n / 2 << endl;
  }

  while (true) {
    cin >> t;
    if (t == 0) break;
    cin >> k >> x;
    if (x > n / 2 + 1) {
      cout << k << " " << x - (n / 2 + 1) << endl;
    } else {
      cout << k << " " << x + (n / 2 + 1) << endl;
    }
  }
  return 0;
}
0