結果

問題 No.2767 Add to Divide
ユーザー 👑 kakel-sankakel-san
提出日時 2024-05-31 23:48:25
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 10,424 ms
コンパイル使用メモリ 172,520 KB
実行使用メモリ 189,756 KB
最終ジャッジ日時 2024-05-31 23:48:38
合計ジャッジ時間 10,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
30,976 KB
testcase_01 AC 64 ms
31,104 KB
testcase_02 AC 60 ms
30,848 KB
testcase_03 AC 97 ms
31,104 KB
testcase_04 AC 61 ms
30,592 KB
testcase_05 AC 93 ms
31,232 KB
testcase_06 AC 94 ms
31,360 KB
testcase_07 AC 94 ms
31,104 KB
testcase_08 AC 95 ms
31,104 KB
testcase_09 AC 94 ms
31,332 KB
testcase_10 AC 95 ms
31,104 KB
testcase_11 AC 98 ms
31,484 KB
testcase_12 AC 95 ms
31,072 KB
testcase_13 AC 94 ms
30,976 KB
testcase_14 AC 95 ms
31,104 KB
testcase_15 AC 86 ms
31,360 KB
testcase_16 AC 88 ms
189,756 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 (long 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