結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  if (N % 2 == 1){
    cout << 1 << ' ' << (N + 1) / 2 << endl;
  } else {
    cout << 2 << ' ' << N / 2 << endl;
  }
  while (1){
    int t;
    cin >> t;
    if (t == 0 || t == 1){
      break;
    }
    int k, x;
    cin >> k >> x;
    if (t == 2){
      break;
    }
    if (k == 1){
      cout << 1 << ' ' << N + 1 - x << endl;
    } else {
      cout << 2 << ' ' << N - x << endl;
    }
  }
}
0