結果

問題 No.2875 What is My Rank?
ユーザー kakel-sankakel-san
提出日時 2024-10-16 00:03:55
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,884 bytes
コンパイル時間 8,007 ms
コンパイル使用メモリ 168,768 KB
実行使用メモリ 218,244 KB
最終ジャッジ日時 2024-10-16 00:04:12
合計ジャッジ時間 16,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,300 KB
testcase_01 AC 57 ms
30,304 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 54 ms
30,436 KB
testcase_06 WA -
testcase_07 AC 55 ms
30,080 KB
testcase_08 AC 52 ms
30,592 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 382 ms
61,316 KB
testcase_34 AC 350 ms
218,244 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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 overlen = Math.Max(0L, map[i][1] - Math.Max(map[i][0] - 1, map[0][1]));
            var underlen = Math.Max(0L, Math.Min(map[0][1] + 1, map[i][0]) - map[0][0]);
            var samelen = Math.Max(0L, Math.Min(map[0][1], map[i][1]) - Math.Max(map[0][0], map[i][0]));
            var ch = 0L;
            if (map[0][1] < map[i][1])
            {
                ch += len * overlen % mod;
            }
            ch += samelen * (samelen - 1) / 2 % mod;
            if (map[0][0] < map[i][0])
            {
                ch += underlen * (map[i][1] - map[i][0] + 1 - overlen) % 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