結果

問題 No.502 階乗を計算するだけ
ユーザー uafr_csuafr_cs
提出日時 2017-04-08 00:07:45
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,021 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 77,784 KB
実行使用メモリ 61,012 KB
最終ジャッジ日時 2024-07-16 03:29:19
合計ジャッジ時間 8,967 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
61,012 KB
testcase_01 AC 125 ms
54,132 KB
testcase_02 AC 125 ms
54,040 KB
testcase_03 AC 124 ms
54,196 KB
testcase_04 AC 125 ms
53,916 KB
testcase_05 AC 127 ms
54,228 KB
testcase_06 AC 120 ms
53,992 KB
testcase_07 AC 122 ms
54,136 KB
testcase_08 AC 122 ms
54,024 KB
testcase_09 AC 116 ms
53,440 KB
testcase_10 AC 125 ms
54,136 KB
testcase_11 AC 127 ms
53,920 KB
testcase_12 AC 124 ms
54,044 KB
testcase_13 AC 126 ms
54,188 KB
testcase_14 AC 114 ms
52,900 KB
testcase_15 AC 123 ms
54,008 KB
testcase_16 AC 121 ms
54,068 KB
testcase_17 AC 120 ms
54,180 KB
testcase_18 AC 121 ms
53,892 KB
testcase_19 AC 123 ms
54,208 KB
testcase_20 AC 123 ms
54,032 KB
testcase_21 AC 123 ms
54,172 KB
testcase_22 AC 132 ms
54,024 KB
testcase_23 AC 115 ms
53,104 KB
testcase_24 AC 136 ms
54,352 KB
testcase_25 AC 129 ms
54,220 KB
testcase_26 AC 134 ms
54,332 KB
testcase_27 AC 127 ms
54,136 KB
testcase_28 AC 119 ms
53,284 KB
testcase_29 AC 127 ms
54,140 KB
testcase_30 AC 131 ms
54,172 KB
testcase_31 AC 125 ms
54,192 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {
	
	public static final long MOD = 1000000007l;
	
	public static long mod_pow(long a, long e, long m){
		long ret = 1;
		for(; e > 0; e /= 2){
			if (e % 2 != 0) ret = (ret * a) % m;
			a = (a * a) % m;
		}
		return ret;
	}
	
	public static long mod_inv(long a, long p){
		return mod_pow(a, p - 2, p);
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		
		if(N >= MOD){
			System.out.println(0);
			return;
		}
		
		if(N < MOD / 2){
			long answer = 1;
			for(int i = 2; i <= N; i++){
				answer *= i;
				answer %= MOD;
			}
			
			System.out.println(answer);
		}else{
			long answer = MOD - 1;
			
			for(long i = MOD - 1; i > N; i--){
				answer *= mod_inv(i, MOD);
				answer %= MOD;
			}
			
			System.out.println(answer);
		}
		
	}
}
0