結果

問題 No.2891 Mint
ユーザー tobisatistobisatis
提出日時 2024-09-13 23:15:17
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 4,243 bytes
コンパイル時間 12,637 ms
コンパイル使用メモリ 166,600 KB
実行使用メモリ 190,960 KB
最終ジャッジ日時 2024-09-13 23:15:38
合計ジャッジ時間 15,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
29,056 KB
testcase_01 WA -
testcase_02 AC 68 ms
29,440 KB
testcase_03 AC 55 ms
28,808 KB
testcase_04 AC 54 ms
28,800 KB
testcase_05 WA -
testcase_06 AC 258 ms
29,568 KB
testcase_07 AC 55 ms
28,800 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 54 ms
29,056 KB
testcase_12 AC 55 ms
28,672 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 55 ms
28,672 KB
testcase_16 WA -
testcase_17 AC 181 ms
29,568 KB
testcase_18 AC 121 ms
29,696 KB
testcase_19 AC 115 ms
29,568 KB
testcase_20 AC 163 ms
29,816 KB
testcase_21 AC 116 ms
29,696 KB
testcase_22 AC 209 ms
29,824 KB
testcase_23 AC 107 ms
29,696 KB
testcase_24 AC 159 ms
29,804 KB
testcase_25 AC 251 ms
29,816 KB
testcase_26 AC 219 ms
29,568 KB
testcase_27 AC 202 ms
29,696 KB
testcase_28 AC 235 ms
29,696 KB
testcase_29 AC 118 ms
29,696 KB
testcase_30 AC 171 ms
29,440 KB
testcase_31 AC 122 ms
29,824 KB
testcase_32 AC 187 ms
29,804 KB
testcase_33 AC 138 ms
29,696 KB
testcase_34 AC 148 ms
29,568 KB
testcase_35 AC 161 ms
29,568 KB
testcase_36 AC 177 ms
29,692 KB
testcase_37 AC 55 ms
28,928 KB
testcase_38 AC 55 ms
28,800 KB
testcase_39 AC 54 ms
28,800 KB
testcase_40 AC 56 ms
28,672 KB
testcase_41 AC 55 ms
28,672 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 54 ms
28,784 KB
testcase_48 AC 54 ms
28,908 KB
testcase_49 AC 55 ms
29,056 KB
testcase_50 AC 55 ms
28,928 KB
testcase_51 AC 55 ms
28,928 KB
testcase_52 AC 55 ms
28,928 KB
testcase_53 AC 54 ms
28,800 KB
testcase_54 AC 55 ms
28,672 KB
testcase_55 AC 54 ms
28,796 KB
testcase_56 AC 54 ms
190,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (130 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

readonly record struct ModInt :
    IEqualityOperators<ModInt, ModInt, bool>,
    IAdditiveIdentity<ModInt, ModInt>,
    IAdditionOperators<ModInt, ModInt, ModInt>,
    IUnaryNegationOperators<ModInt, ModInt>,
    ISubtractionOperators<ModInt, ModInt, ModInt>,
    IMultiplicativeIdentity<ModInt, ModInt>,
    IMultiplyOperators<ModInt, ModInt, ModInt>,
    IDivisionOperators<ModInt, ModInt, ModInt>
{
    int V { get; init; }
    public const int Mod = 998244353;
    public ModInt(long value)
    {
        var v = value % Mod;
        if (v < 0) v += Mod;
        V = (int)v;
    }
    ModInt(int value) { V = value; }

    public static implicit operator ModInt(long v) => new(v);
    public static implicit operator int(ModInt modInt) => modInt.V;
    public static ModInt operator +(ModInt a, ModInt b)
    {
        var v = a.V + b.V;
        if (v >= Mod) v -= Mod;
        return new(v);
    }
    public static ModInt operator -(ModInt a) => new(a.V == 0 ? 0 : Mod - a.V);
    public static ModInt operator -(ModInt a, ModInt b)
    {
        var v = a.V - b.V;
        if (v < 0) v += Mod;
        return new(v);
    }
    public static ModInt operator *(ModInt a, ModInt b) => new((int)((long)a.V * b.V % Mod));
    public static ModInt operator /(ModInt a, ModInt b)
    {
        if (b == 0) throw new DivideByZeroException();
        var (d, x, _) = ExtendedGcd(b.V, Mod);
        if (d > 1) throw new DivideByZeroException();
        return x * a.V;
    }

    public ModInt Power(long p)
    {
        if (p < 0) return (MultiplicativeIdentity / V).Power(-p);
        long res = 1;
        long k = V;
        while (p > 0)
        {
            if ((p & 1) > 0) res = res * k % Mod;
            k = k * k % Mod;
            p >>= 1;
        }
        return res;
    }

    static (long d, long x, long y) ExtendedGcd(long a, long b)
    {
        if (b == 0) return (a, 1, 0);
        var (d, x, y) = ExtendedGcd(b, a % b);
        return (d, y, x - a / b * y);
    }

    public static ModInt AdditiveIdentity => new(0);
    public static ModInt MultiplicativeIdentity => new(1);

    public override string ToString() => V.ToString();
}

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Input<long>();
        var m = Input<long>();
        ModInt ans = 0;
        if (n > m)
        {
            ans = m;
            ans *= n - m;
        }
        var sq = 1000000L;
        while (sq * sq <= m) sq++;
        for (var i = 1L; i <= Math.Min(n, sq); i++) ans += m % i;
        if (n <= sq) return ans;
        var inv2 = (ModInt)1 / 2;
        for (var i = 2L; i <= sq; i++)
        {
            var s = Math.Min(n, m / (i - 1));
            var t = Math.Max(sq, m / i);
            if (s < t) continue;
            var d = s - t;
            var sr = m % s;
            ans += (sr + sr + (ModInt)(d - 1) * (i - 1)) * d * inv2;
        }
        return ans;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0