結果

問題 No.2358 xy+yz+zx=N
ユーザー AdamantiteAdamantite
提出日時 2023-06-25 03:27:45
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 2,261 bytes
コンパイル時間 7,586 ms
コンパイル使用メモリ 165,996 KB
実行使用メモリ 185,964 KB
最終ジャッジ日時 2024-07-02 05:44:31
合計ジャッジ時間 9,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
29,440 KB
testcase_01 AC 54 ms
29,312 KB
testcase_02 AC 54 ms
29,440 KB
testcase_03 AC 54 ms
29,440 KB
testcase_04 AC 53 ms
29,312 KB
testcase_05 AC 53 ms
29,312 KB
testcase_06 AC 54 ms
29,312 KB
testcase_07 AC 70 ms
31,232 KB
testcase_08 AC 152 ms
36,096 KB
testcase_09 AC 157 ms
36,352 KB
testcase_10 AC 114 ms
32,896 KB
testcase_11 AC 120 ms
33,536 KB
testcase_12 AC 96 ms
185,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

namespace B_xy_yz_zx_N
{
    internal class Program
    {
        static void Main(string[] args) {
            int n = int.Parse(Console.ReadLine());

            List<string> list = new List<string>();

            int x = 0;
            while (x  * x <= n) {
                int y = x;
                while(y * y <= n) {
                    if (x + y == 0) {
                        y++;
                        continue;
                    }
                    int a = x * y;
                    int b = x + y;
                    if ((n - a) % b == 0) {
                        int z = (n - a) / b;
                        if (z < y) {
                            y++;
                            continue;
                        }
                        if (x == y && y == z) {
                            list.Add(string.Format("{0} {1} {2}", x, y, z));
                        } else if (x == y) {
                            list.Add(string.Format("{0} {1} {2}", x, y, z));
                            list.Add(string.Format("{0} {1} {2}", x, z, y));
                            list.Add(string.Format("{0} {1} {2}", z, x, y));
                        } else if (y == z) {
                            list.Add(string.Format("{0} {1} {2}", x, y, z));
                            list.Add(string.Format("{0} {1} {2}", y, x, z));
                            list.Add(string.Format("{0} {1} {2}", y, z, x));
                        } else {
                            list.Add(string.Format("{0} {1} {2}", x, y, z));
                            list.Add(string.Format("{0} {1} {2}", x, z, y));
                            list.Add(string.Format("{0} {1} {2}", y, x, z));
                            list.Add(string.Format("{0} {1} {2}", y, z, x));
                            list.Add(string.Format("{0} {1} {2}", z, x, y));
                            list.Add(string.Format("{0} {1} {2}", z, y, x));
                        }
                    }
                    y++;
                }
                x++;
            }
            Console.WriteLine(list.Count);
            foreach (string s in list) {
                Console.WriteLine(s);
            }
        }
    }
}
0