結果

問題 No.2875 What is My Rank?
ユーザー kakel-sankakel-san
提出日時 2024-10-16 00:10:58
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 1,925 bytes
コンパイル時間 8,200 ms
コンパイル使用メモリ 167,384 KB
実行使用メモリ 216,664 KB
最終ジャッジ日時 2024-10-16 00:11:16
合計ジャッジ時間 17,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,080 KB
testcase_01 AC 59 ms
30,080 KB
testcase_02 AC 58 ms
30,208 KB
testcase_03 AC 59 ms
30,436 KB
testcase_04 AC 59 ms
30,208 KB
testcase_05 AC 59 ms
30,208 KB
testcase_06 AC 59 ms
30,436 KB
testcase_07 AC 60 ms
30,080 KB
testcase_08 AC 59 ms
29,952 KB
testcase_09 AC 431 ms
61,696 KB
testcase_10 AC 405 ms
61,568 KB
testcase_11 AC 402 ms
61,696 KB
testcase_12 AC 163 ms
49,408 KB
testcase_13 AC 179 ms
51,328 KB
testcase_14 AC 97 ms
36,448 KB
testcase_15 AC 384 ms
61,696 KB
testcase_16 AC 297 ms
59,008 KB
testcase_17 AC 226 ms
58,624 KB
testcase_18 AC 325 ms
59,264 KB
testcase_19 AC 304 ms
59,008 KB
testcase_20 AC 121 ms
41,216 KB
testcase_21 AC 129 ms
42,240 KB
testcase_22 AC 186 ms
52,736 KB
testcase_23 AC 318 ms
58,880 KB
testcase_24 AC 377 ms
61,436 KB
testcase_25 AC 183 ms
51,584 KB
testcase_26 AC 110 ms
38,912 KB
testcase_27 AC 167 ms
49,020 KB
testcase_28 AC 160 ms
48,000 KB
testcase_29 AC 192 ms
54,144 KB
testcase_30 AC 195 ms
54,656 KB
testcase_31 AC 93 ms
35,456 KB
testcase_32 AC 287 ms
59,008 KB
testcase_33 AC 405 ms
61,320 KB
testcase_34 AC 406 ms
216,664 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 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) % mod;
            }
            ch += mod - overlen * underlen % 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