結果

問題 No.502 階乗を計算するだけ
ユーザー 鳩でもわかるC#鳩でもわかるC#
提出日時 2024-06-22 20:22:33
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 846 ms / 1,000 ms
コード長 1,928 bytes
コンパイル時間 9,945 ms
コンパイル使用メモリ 168,032 KB
実行使用メモリ 185,696 KB
最終ジャッジ日時 2024-06-22 20:22:55
合計ジャッジ時間 17,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
29,824 KB
testcase_01 AC 53 ms
29,920 KB
testcase_02 AC 51 ms
30,208 KB
testcase_03 AC 51 ms
29,824 KB
testcase_04 AC 50 ms
29,920 KB
testcase_05 AC 51 ms
30,208 KB
testcase_06 AC 55 ms
30,336 KB
testcase_07 AC 55 ms
29,824 KB
testcase_08 AC 52 ms
29,920 KB
testcase_09 AC 53 ms
30,308 KB
testcase_10 AC 51 ms
30,208 KB
testcase_11 AC 54 ms
29,952 KB
testcase_12 AC 52 ms
29,952 KB
testcase_13 AC 55 ms
30,068 KB
testcase_14 AC 49 ms
30,336 KB
testcase_15 AC 48 ms
29,824 KB
testcase_16 AC 51 ms
29,952 KB
testcase_17 AC 52 ms
30,336 KB
testcase_18 AC 49 ms
30,208 KB
testcase_19 AC 51 ms
30,208 KB
testcase_20 AC 52 ms
29,952 KB
testcase_21 AC 48 ms
30,080 KB
testcase_22 AC 66 ms
30,080 KB
testcase_23 AC 57 ms
30,080 KB
testcase_24 AC 62 ms
30,464 KB
testcase_25 AC 54 ms
30,208 KB
testcase_26 AC 55 ms
30,336 KB
testcase_27 AC 53 ms
30,080 KB
testcase_28 AC 54 ms
30,208 KB
testcase_29 AC 53 ms
30,464 KB
testcase_30 AC 65 ms
30,336 KB
testcase_31 AC 61 ms
30,312 KB
testcase_32 AC 629 ms
30,464 KB
testcase_33 AC 846 ms
30,328 KB
testcase_34 AC 363 ms
30,080 KB
testcase_35 AC 519 ms
30,336 KB
testcase_36 AC 293 ms
30,080 KB
testcase_37 AC 539 ms
30,208 KB
testcase_38 AC 276 ms
30,324 KB
testcase_39 AC 785 ms
30,588 KB
testcase_40 AC 73 ms
30,324 KB
testcase_41 AC 53 ms
30,208 KB
testcase_42 AC 52 ms
30,324 KB
testcase_43 AC 50 ms
29,824 KB
testcase_44 AC 51 ms
30,324 KB
testcase_45 AC 52 ms
30,336 KB
testcase_46 AC 54 ms
29,944 KB
testcase_47 AC 50 ms
30,208 KB
testcase_48 AC 51 ms
30,208 KB
testcase_49 AC 52 ms
29,952 KB
testcase_50 AC 50 ms
30,208 KB
testcase_51 AC 52 ms
185,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (125 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 System.Collections.Generic;
using System.Linq;

public class Program
{
    static long ModFactorial(long n)
    {
        long mod = 1000000007;
        if (n == 0)
            return 1;

        //nがmod以上ならXは0になる
        if (n >= mod)
            return 0;

        long[] catche_list = {
            1,
            67347853,
            927880474, // (1 * 10^8)! % mod
            261384175,
            933245637, // (2 * 10^8)! % mod
            112390913,
            668123525, // (3 * 10^8)! % mod
            386027524,
            429277690, // (4 * 10^8)! % mod
            462639908,
            733333339, // (5 * 10^8)! % mod
            696628828,
            724464507, // (6 * 10^8)! % mod
            92255682,
            957939114, // (7 * 10^8)! % mod
            217598709,
            203191898, // (8 * 10^8)! % mod
            823845496,
            586445753, // (9 * 10^8)! % mod
            315103615,
            698611116, // (10 * 10^8)! % mod
        };

        //nを50000000で割った商がcatche_listのインデックスになり起点が求まる
        long start = n / 50000000;
        long ans = catche_list[start];

        //起点から階乗の計算を始める
        for (long i = start * 50000000 + 1; i <= n; i++)
            ans = ans * i % mod;

        return ans;
    }

    static void func()
    {
        long mod = 1000000007;
        long a = 1;

        for (long i = 1; i < mod; i++)
        {
            a = a * i % mod;
            if (i % 50000000 == 0)
                Console.WriteLine(a);
        }
    }

    static void Main()
    {
        //func();
        //Console.WriteLine("A");

        long n;
        {
            long[] vs = Console.ReadLine().Split().Select(_ => long.Parse(_)).ToArray();
            n = vs[0];
        }

        long value = ModFactorial(n);
        Console.WriteLine(value);
    }
}

0