結果
問題 |
No.2358 xy+yz+zx=N
|
ユーザー |
![]() |
提出日時 | 2024-01-11 01:43:29 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 44 ms / 2,000 ms |
コード長 | 735 bytes |
コンパイル時間 | 2,254 ms |
コンパイル使用メモリ | 200,252 KB |
最終ジャッジ日時 | 2025-02-18 17:06:58 |
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int n; cin>>n; set<array<int,3>> ANS; for(int i=0;i*i<=n;i++){ for(int j=max(1,i);j*j<=n;j++){ if(n-i*j<0) continue; if((n-i*j)%(i+j)!=0) continue; vector<int> A(3); A[0]=i; A[1]=j; A[2]=(n-i*j)/(i+j); vector<int> B(3); rep(k,3) B[k]=k; do{ ANS.insert({A[B[0]],A[B[1]],A[B[2]]}); }while(next_permutation(ALL(B))); } } cout<<ANS.size()<<'\n'; for(auto x:ANS){ cout<<x[0]<<" "<<x[1]<<" "<<x[2]<<'\n'; } return 0; }