結果

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int n;
	cin >> n;

	int h = (n+1)/2;
	int k = n % 2 == 0 ? 2 : 1;

	cout << k << " " << h << endl;
	if(n % 2 == 0) h++;

	while(true){
		int t;
		cin >> t;
		if(t == 0) exit(0);
		
		int l, y;
		cin >> l >> y;

		cout << l << " " << (y > h ? y - h : y + h) << endl;
	}
}
0