結果

問題 No.502 階乗を計算するだけ
ユーザー 鳩でもわかるC#鳩でもわかるC#
提出日時 2024-06-22 19:58:18
言語 C#
(.NET 8.0.203)
結果
RE  
実行時間 -
コード長 2,229 bytes
コンパイル時間 15,849 ms
コンパイル使用メモリ 165,632 KB
実行使用メモリ 191,084 KB
最終ジャッジ日時 2024-06-22 19:59:02
合計ジャッジ時間 41,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 RE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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 System.Collections.Generic;
using System.Linq;

public class Program
{
    static long ModPow(long a, long b, long m)
    {
        long ans = 1;
        while (0 < b)
        {
            if ((b & 1) == 1)
            {
                ans = (ans * a) % m;
            }
            a = (a * a) % m;
            b >>= 1;
        }
        return ans;
    }

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

        for (long i = 1; i < mod; i++)
        {
            a = a * i % mod;
            if (i % 100000000 == 0)
            {
                //a = (a * a) % mod;
                Console.WriteLine(a);
            }
        }
        //cout<<"}"<<endl;
    }

    static long ModFactorial(long n)
    {
        long mod = 1000000007;
        if (n == 0)
            return 0;

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

        long[] catche_list = {
            1,
            927880474, // (1 * 10^8)! % mod
            933245637, // (2 * 10^8)! % mod
            668123525, // (3 * 10^8)! % mod
            429277690, // (4 * 10^8)! % mod
            733333339, // (5 * 10^8)! % mod
            724464507, // (6 * 10^8)! % mod
            957939114, // (7 * 10^8)! % mod
            203191898, // (8 * 10^8)! % mod
            586445753, // (9 * 10^8)! % mod
            698611116, // (10 * 10^8)! % mod
        };

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

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

        return ans;
    }


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

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

        long A, B, M;
        {
            long[] vs = Console.ReadLine().Split().Select(_ => long.Parse(_)).ToArray();
            A = vs[0];
            B = vs[1];
            M = vs[2];
        }
    }
}

0