結果

問題 No.502 階乗を計算するだけ
ユーザー fal_rndfal_rnd
提出日時 2017-04-07 23:09:12
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 587 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 61,192 KB
最終ジャッジ日時 2024-07-16 02:57:13
合計ジャッジ時間 8,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
61,192 KB
testcase_01 AC 122 ms
53,932 KB
testcase_02 AC 119 ms
53,868 KB
testcase_03 AC 124 ms
54,196 KB
testcase_04 AC 121 ms
54,100 KB
testcase_05 AC 110 ms
53,216 KB
testcase_06 AC 121 ms
54,112 KB
testcase_07 AC 119 ms
54,148 KB
testcase_08 AC 119 ms
54,088 KB
testcase_09 AC 131 ms
53,996 KB
testcase_10 AC 122 ms
54,144 KB
testcase_11 AC 107 ms
53,036 KB
testcase_12 AC 122 ms
53,896 KB
testcase_13 AC 123 ms
54,032 KB
testcase_14 AC 121 ms
54,028 KB
testcase_15 AC 109 ms
52,928 KB
testcase_16 AC 124 ms
53,872 KB
testcase_17 AC 121 ms
53,840 KB
testcase_18 AC 121 ms
54,216 KB
testcase_19 AC 120 ms
53,984 KB
testcase_20 AC 119 ms
53,896 KB
testcase_21 AC 121 ms
53,996 KB
testcase_22 AC 112 ms
52,932 KB
testcase_23 AC 124 ms
54,096 KB
testcase_24 AC 126 ms
54,168 KB
testcase_25 AC 129 ms
53,888 KB
testcase_26 AC 124 ms
53,928 KB
testcase_27 AC 114 ms
53,064 KB
testcase_28 AC 113 ms
53,088 KB
testcase_29 AC 122 ms
54,188 KB
testcase_30 AC 128 ms
53,908 KB
testcase_31 AC 122 ms
54,036 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.Scanner;

public class Main{
	
	static final Scanner	s	=new Scanner(System.in);
	
	static final int		mod	=1000000007;
	
	public static void main(String[] __){
		long l=1, base=1000000006/*getBase()*/, n=s.nextLong();
		{
			long buf=base, m=n/mod;
			while(m!=0){
				if(m%2==1){
					l*=buf;
					l%=mod;
				}
				buf*=buf;
				buf%=mod;
				
				m/=2;
			}
		}
		for(long i=n%mod; i>1; i--){
			l*=i;
			l%=mod;
		}
		System.out.println(l);
	}
	
	static int getBase(){
		long base=1;
		for(int i=2; i<mod; i++){
			base*=i;
			base%=mod;
		}
		return (int)base;
	}
}
0