結果

問題 No.2358 xy+yz+zx=N
ユーザー umezoumezo
提出日時 2024-01-11 01:43:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 735 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 210,364 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-01-11 01:43:33
合計ジャッジ時間 3,852 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#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;
}
0