結果

問題 No.2496 LCM between Permutations
ユーザー achapiachapi
提出日時 2023-10-06 23:20:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 823 bytes
コンパイル時間 2,049 ms
コンパイル使用メモリ 204,980 KB
実行使用メモリ 25,708 KB
平均クエリ数 953.97
最終ジャッジ日時 2024-07-26 17:05:20
合計ジャッジ時間 6,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 23 ms
25,220 KB
testcase_02 WA -
testcase_03 AC 23 ms
25,348 KB
testcase_04 WA -
testcase_05 AC 24 ms
24,964 KB
testcase_06 AC 24 ms
25,208 KB
testcase_07 AC 23 ms
24,836 KB
testcase_08 WA -
testcase_09 AC 24 ms
25,220 KB
testcase_10 AC 23 ms
24,964 KB
testcase_11 WA -
testcase_12 AC 23 ms
25,220 KB
testcase_13 AC 24 ms
24,580 KB
testcase_14 AC 24 ms
24,824 KB
testcase_15 AC 30 ms
25,196 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 93 ms
25,220 KB
testcase_21 AC 82 ms
25,208 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 90 ms
24,964 KB
testcase_25 AC 113 ms
25,348 KB
testcase_26 AC 113 ms
24,940 KB
testcase_27 AC 115 ms
24,940 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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