結果

問題 No.2767 Add to Divide
ユーザー 👑 kakel-sankakel-san
提出日時 2024-05-31 22:01:35
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,270 bytes
コンパイル時間 8,219 ms
コンパイル使用メモリ 167,692 KB
実行使用メモリ 186,192 KB
最終ジャッジ日時 2024-05-31 22:01:46
合計ジャッジ時間 9,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
31,360 KB
testcase_01 WA -
testcase_02 AC 55 ms
31,104 KB
testcase_03 WA -
testcase_04 AC 54 ms
31,104 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 81 ms
31,488 KB
testcase_12 AC 75 ms
31,360 KB
testcase_13 AC 76 ms
31,360 KB
testcase_14 AC 78 ms
31,232 KB
testcase_15 AC 71 ms
31,488 KB
testcase_16 AC 68 ms
186,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var t = NN;
        var ans = new long[t];
        for (var u = 0; u < t; ++u)
        {
            var c = NList;
            ans[u] = Div(c[0], c[1]);
        }
        WriteLine(string.Join("\n", ans));
    }
    static long Div(int a, int b)
    {
        var sq = (int)Math.Sqrt(b) + 10;
        var ans = long.MaxValue;
        for (var i = 0L; i <= sq; ++i)
        {
            if ((b + i) % (a + i) == 0)
            {
                ans = i;
                break;
            }
        }
        for (var i = sq; i > 1; --i)
        {
            if (b > i * a && (b - i * a) % (i - 1) == 0)
            {
                ans = Math.Min(ans, (b - i * a) / (i - 1));
                break;
            }
        }
        if (ans == long.MaxValue) ans = -1;
        return ans;
    }
}
0