結果
問題 | No.2358 xy+yz+zx=N |
ユーザー | tsugutsugu |
提出日時 | 2023-06-23 21:58:20 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 69 ms / 2,000 ms |
コード長 | 1,131 bytes |
コンパイル時間 | 2,948 ms |
コンパイル使用メモリ | 253,728 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-07-01 17:31:07 |
合計ジャッジ時間 | 4,190 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "debug.hpp" #else #define debug(...) 1 #endif const int MX = 3300; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; set<tuple<int, int, int>> A; for (int x = 0; x <= MX; x++) { for (int y = 0; y <= MX; y++) { if (x == 0 && y == 0) { continue; } if (n - x * y < 0) { continue; } if ((n - x * y) % (x + y) == 0) { int z = (n - x * y) / (x + y); A.insert(make_tuple(x, y, z)); A.insert(make_tuple(x, z, y)); A.insert(make_tuple(y, x, z)); A.insert(make_tuple(y, z, x)); A.insert(make_tuple(z, x, y)); A.insert(make_tuple(z, y, x)); } } } vector<tuple<int, int, int>> ans(A.begin(), A.end()); cout << ans.size() << '\n'; for (int i = 0; i < (int) ans.size(); i++) { cout << get<0>(ans[i]) << ' ' << get<1>(ans[i]) << ' ' << get<2>(ans[i]) << '\n'; } }