結果

問題 No.2358 xy+yz+zx=N
ユーザー luanmengleiluanmenglei
提出日時 2023-06-23 22:37:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 210,276 KB
実行使用メモリ 4,416 KB
最終ジャッジ日時 2023-09-14 10:13:34
合計ジャッジ時間 3,775 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 41 ms
4,376 KB
testcase_09 AC 41 ms
4,416 KB
testcase_10 AC 32 ms
4,376 KB
testcase_11 AC 34 ms
4,380 KB
testcase_12 AC 24 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<array<int, 3>> ans, nans;
int n;

void check(int x, int y) {
	if ((n - x * y) % (x + y) != 0 || (n - x * y) / (x + y) < y) return;
	int z = (n - x * y) / (x + y);
	ans.push_back({ x, y, z });
}

int main() {
	ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
	cin >> n;
	for (int x = 0; x * x <= n; x ++) {
		for (int y = x; y * y <= n; y ++) if (y != 0) {
			check(x, y);
		}
	}
	for (auto [x, y, z] : ans) {
		vector<int> arr{ x, y, z };
		vector<int> p{ 1, 2, 3 };
		do {
			nans.push_back({ arr[p[0] - 1], arr[p[1] - 1], arr[p[2] - 1] });
		} while(next_permutation(p.begin(), p.end()));
	}
	sort(nans.begin(), nans.end());
	nans.erase(unique(nans.begin(), nans.end()), nans.end());
	cout << nans.size() << "\n";
	for (auto [x, y, z] : nans) cout << x << " " << y << " " << z << "\n";
	return 0;
}
0