結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
61,104 KB
testcase_01 AC 125 ms
54,128 KB
testcase_02 AC 105 ms
54,232 KB
testcase_03 AC 123 ms
54,052 KB
testcase_04 AC 120 ms
54,132 KB
testcase_05 AC 110 ms
52,936 KB
testcase_06 AC 121 ms
53,996 KB
testcase_07 AC 125 ms
54,088 KB
testcase_08 AC 123 ms
54,212 KB
testcase_09 AC 117 ms
54,184 KB
testcase_10 AC 121 ms
53,852 KB
testcase_11 AC 123 ms
53,960 KB
testcase_12 AC 121 ms
53,884 KB
testcase_13 AC 121 ms
53,920 KB
testcase_14 AC 116 ms
53,824 KB
testcase_15 AC 125 ms
54,240 KB
testcase_16 AC 122 ms
54,192 KB
testcase_17 AC 125 ms
54,036 KB
testcase_18 AC 124 ms
53,988 KB
testcase_19 AC 111 ms
52,928 KB
testcase_20 AC 110 ms
52,752 KB
testcase_21 AC 116 ms
53,900 KB
testcase_22 AC 134 ms
54,320 KB
testcase_23 AC 128 ms
54,068 KB
testcase_24 AC 123 ms
54,104 KB
testcase_25 AC 132 ms
54,136 KB
testcase_26 AC 129 ms
54,032 KB
testcase_27 AC 131 ms
54,288 KB
testcase_28 AC 126 ms
53,880 KB
testcase_29 AC 116 ms
52,808 KB
testcase_30 AC 134 ms
53,856 KB
testcase_31 AC 128 ms
54,072 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();
		for(long i=n/mod;i>0;i--) {
			l*=base;
			l%=mod;
		}
		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