結果

問題 No.2176 LRM Question 1
ユーザー kakel-sankakel-san
提出日時 2023-09-04 20:50:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 951 ms
コンパイル使用メモリ 115,976 KB
実行使用メモリ 42,004 KB
最終ジャッジ日時 2024-06-22 18:20:15
合計ジャッジ時間 2,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,004 KB
testcase_01 AC 26 ms
25,076 KB
testcase_02 AC 71 ms
39,692 KB
testcase_03 AC 25 ms
24,964 KB
testcase_04 AC 58 ms
42,004 KB
testcase_05 AC 29 ms
25,184 KB
testcase_06 AC 27 ms
27,104 KB
testcase_07 AC 26 ms
26,980 KB
testcase_08 AC 52 ms
40,148 KB
testcase_09 AC 53 ms
41,492 KB
testcase_10 AC 62 ms
39,416 KB
testcase_11 AC 27 ms
24,824 KB
testcase_12 AC 25 ms
25,004 KB
testcase_13 AC 57 ms
39,764 KB
testcase_14 AC 71 ms
41,608 KB
testcase_15 AC 58 ms
36,764 KB
testcase_16 AC 53 ms
34,368 KB
testcase_17 AC 27 ms
23,140 KB
testcase_18 AC 53 ms
38,168 KB
testcase_19 AC 44 ms
33,788 KB
testcase_20 AC 32 ms
27,376 KB
testcase_21 AC 42 ms
30,708 KB
testcase_22 AC 26 ms
25,072 KB
testcase_23 AC 40 ms
31,948 KB
testcase_24 AC 37 ms
30,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (l, r, m) = (c[0], c[1], c[2]);
        if (m == 1)
        {
            WriteLine(0);
            return;
        }
        var f = new long[m];
        f[1] = 1;
        var dp = new long[m];
        dp[1] = 1;
        for (var i = 2; i < m; ++i)
        {
            f[i] = f[i - 1] * i % m;
            dp[i] = dp[i - 1] * f[i] % m;
        }
        var ans = 0L;
        for (var i = l; i <= r && i < m; ++i) ans = (ans + dp[i]) % m;
        WriteLine(ans);
    }
}
0