結果

問題 No.502 階乗を計算するだけ
ユーザー 鳩でもわかるC#鳩でもわかるC#
提出日時 2024-06-22 20:01:25
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,397 bytes
コンパイル時間 15,242 ms
コンパイル使用メモリ 167,920 KB
実行使用メモリ 184,280 KB
最終ジャッジ日時 2024-06-22 20:01:54
合計ジャッジ時間 27,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 54 ms
30,332 KB
testcase_02 AC 55 ms
30,320 KB
testcase_03 AC 54 ms
29,940 KB
testcase_04 AC 54 ms
30,080 KB
testcase_05 AC 54 ms
29,824 KB
testcase_06 AC 55 ms
29,952 KB
testcase_07 AC 54 ms
30,320 KB
testcase_08 AC 53 ms
30,080 KB
testcase_09 AC 54 ms
29,952 KB
testcase_10 AC 56 ms
30,208 KB
testcase_11 AC 55 ms
30,208 KB
testcase_12 AC 54 ms
29,824 KB
testcase_13 AC 53 ms
30,336 KB
testcase_14 AC 54 ms
29,940 KB
testcase_15 AC 54 ms
29,952 KB
testcase_16 AC 55 ms
29,912 KB
testcase_17 AC 54 ms
30,208 KB
testcase_18 AC 55 ms
30,332 KB
testcase_19 AC 54 ms
30,080 KB
testcase_20 AC 54 ms
29,952 KB
testcase_21 AC 54 ms
30,208 KB
testcase_22 AC 70 ms
30,332 KB
testcase_23 AC 57 ms
30,336 KB
testcase_24 AC 66 ms
30,576 KB
testcase_25 AC 55 ms
30,208 KB
testcase_26 AC 61 ms
30,332 KB
testcase_27 AC 59 ms
30,572 KB
testcase_28 AC 60 ms
30,332 KB
testcase_29 AC 57 ms
30,592 KB
testcase_30 AC 69 ms
30,208 KB
testcase_31 AC 62 ms
30,080 KB
testcase_32 AC 637 ms
30,324 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 537 ms
30,324 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 83 ms
30,336 KB
testcase_41 AC 55 ms
30,080 KB
testcase_42 AC 55 ms
29,824 KB
testcase_43 AC 55 ms
29,940 KB
testcase_44 AC 54 ms
29,952 KB
testcase_45 AC 52 ms
29,824 KB
testcase_46 AC 55 ms
29,824 KB
testcase_47 AC 55 ms
30,208 KB
testcase_48 AC 53 ms
30,328 KB
testcase_49 AC 55 ms
30,336 KB
testcase_50 AC 54 ms
30,336 KB
testcase_51 AC 52 ms
184,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (138 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 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);
    }
}

0