結果

問題 No.2496 LCM between Permutations
ユーザー achapiachapi
提出日時 2023-10-06 23:19:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 823 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 202,032 KB
実行使用メモリ 36,340 KB
最終ジャッジ日時 2023-10-06 23:19:58
合計ジャッジ時間 8,591 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int N;
	cin >> N;
	vector<int> _A(N);
	int g = 0;
	for (int i = 0; i < N; i++){
		cout << "! " << i + 1 << ' ' << 1 << endl;
		int X;
		cin >> X;
		g = gcd(g, X);
		_A[i] = X;
	}
	int a = -1;
	for (int i = 0; i < N; i++){
		_A[i] /= g;
		if (_A[i] == 1){
			a = i + 1;
		}
	}
	vector<int> A(N), B(N);
	int b = -1;
	for (int i = 0; i < N; i++){
		cout << "! " << a << ' ' << i + 1 << endl;
		int X;
		cin >> X;
		B[i] = X;
		if (X == 1){
			b = i + 1;
		}
	}
	for (int i = 0; i < N; i++){
		cout << "! " << i + 1 << ' ' << b << endl;
		int X;
		cin >> X;
		A[i] = X;
	}
	cout << "! ";
	for (int i = 0; i < N; i++){
		cout << A[i];
		cout << ' ';
	}
	for (int i = 0; i < N; i++){
		cout << B[i];
		if (i + 1 < N){
			cout << ' ';
		}
	}
	cout << endl;
	return 0;
}
0