結果

問題 No.2358 xy+yz+zx=N
ユーザー nononnonon
提出日時 2023-07-13 20:24:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 876 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 209,040 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-09-15 06:29:59
合計ジャッジ時間 3,554 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 85 ms
5,888 KB
testcase_09 AC 92 ms
5,888 KB
testcase_10 AC 47 ms
5,376 KB
testcase_11 AC 54 ms
5,376 KB
testcase_12 AC 30 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int N;
    cin>>N;
    set<pair<int,pair<int,int>>> ans;
    for(int x=0; x*x<=N; x++){
        for(int y=x; y*y<=N; y++){
            if(x+y>0 && (N-x*y)%(x+y)==0){
                int z=(N-x*y)/(x+y);
                if(y<=z){
                    ans.insert(make_pair(x,make_pair(y,z)));
                    ans.insert(make_pair(x,make_pair(z,y)));
                    ans.insert(make_pair(y,make_pair(x,z)));
                    ans.insert(make_pair(y,make_pair(z,x)));
                    ans.insert(make_pair(z,make_pair(x,y)));
                    ans.insert(make_pair(z,make_pair(y,x)));
                }
            }
        }
    }
    cout << ans.size() << endl;
    for(auto _ans:ans){
        cout << _ans.first << " " << _ans.second.first << " " << _ans.second.second << endl;
    }
    return 0;
}
0