結果

問題 No.2875 What is My Rank?
ユーザー kakel-sankakel-san
提出日時 2024-10-15 23:49:50
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,877 bytes
コンパイル時間 9,057 ms
コンパイル使用メモリ 165,464 KB
実行使用メモリ 216,180 KB
最終ジャッジ日時 2024-10-15 23:50:14
合計ジャッジ時間 18,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,464 KB
testcase_01 AC 59 ms
30,080 KB
testcase_02 AC 59 ms
30,464 KB
testcase_03 AC 59 ms
30,464 KB
testcase_04 AC 59 ms
30,080 KB
testcase_05 AC 59 ms
30,592 KB
testcase_06 WA -
testcase_07 AC 59 ms
30,336 KB
testcase_08 AC 59 ms
30,436 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 394 ms
61,416 KB
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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 n = NN;
        var map = NArr(n);
        WriteLine(Rank(n, map));
    }
    static long Rank(int n, int[][] map)
    {
        var mod = 998_244_353;
        var ans = 1L;
        var len = map[0][1] - map[0][0] + 1L;
        for (var i = 1; i < n; ++i)
        {
            var pa = Exp(len * (map[i][1] - map[i][0] + 1), mod - 2, mod);
            var ch = 0L;
            if (map[0][1] < map[i][1])
            {
                ch += len * (map[i][1] - Math.Max(map[i][0] - 1, map[0][1])) % mod;
            }
            {
                var left = Math.Max(map[0][0], map[i][0]);
                var right = Math.Min(map[0][1], map[i][1]);
                if (left < right) ch += (right - left + 1L) * (right - left) / 2 % mod;
            }
            if (map[0][0] < map[i][0])
            {
                ch += (Math.Min(map[i][0], map[0][1] + 1L) - map[0][0]) * (Math.Min(map[0][1], map[i][1]) - map[i][0]+ 1) % mod;
            }
            ans = (ans + pa * (ch % mod) % mod) % mod;
        }
        return ans;
    }
    static long Exp(long n, long p, int mod)
    {
        long _n = n % mod;
        var _p = p;
        var result = 1L;
        if ((_p & 1) == 1) result *= _n;
        while (_p > 0)
        {
            _n = _n * _n % mod;
            _p >>= 1;
            if ((_p & 1) == 1) result = result * _n % mod;
        }
        return result;
    }
}
0