結果

問題 No.2358 xy+yz+zx=N
ユーザー elpheelphe
提出日時 2024-07-17 12:49:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 807 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 78,944 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-17 12:49:18
合計ジャッジ時間 5,374 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 807 ms
6,940 KB
testcase_09 AC 782 ms
6,940 KB
testcase_10 AC 799 ms
6,944 KB
testcase_11 AC 805 ms
6,944 KB
testcase_12 AC 597 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <tuple>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int N, x, y, z_l, z_r, z_c;
	cin >> N;
	vector<tuple<int, int, int>> ans;

	for (x = 0; x <= N; ++x)
		for (y = 0; y <= N && x * y <= N; ++y)
			if ((x != 0 || y != 0) && (N - x * y) % (x + y) == 0)
				ans.emplace_back(x, y, (N - x * y) / (x + y));

	cout << ans.size() << '\n';
	for (x = 0; x != ans.size(); ++x)
		cout << get<0>(ans[x]) << ' ' << get<1>(ans[x]) << ' ' << get<2>(ans[x]) << '\n';

	return 0;
}
0