結果
問題 | No.1149 色塗りゲーム |
ユーザー |
|
提出日時 | 2020-11-10 01:06:00 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 143 ms / 2,000 ms |
コード長 | 495 bytes |
コンパイル時間 | 818 ms |
コンパイル使用メモリ | 70,760 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 19.82 |
最終ジャッジ日時 | 2024-07-17 07:21:46 |
合計ジャッジ時間 | 7,834 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 50 |
ソースコード
#include <iostream>#include <vector>using namespace std;int main(){int N;cin >> N;vector<int> d(N, 0);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) return 0;int k, x;cin >> k >> x;if(k == 1) cout << k << ' ' << N - x + 1 << endl;else cout << k << ' ' << N - x << endl;}}