結果

問題 No.523 LED
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-15 02:34:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 3,212 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 54,684 KB
最終ジャッジ日時 2024-06-30 14:40:52
合計ジャッジ時間 9,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,972 KB
testcase_01 AC 132 ms
53,980 KB
testcase_02 AC 140 ms
54,684 KB
testcase_03 AC 134 ms
53,844 KB
testcase_04 AC 131 ms
54,116 KB
testcase_05 AC 469 ms
54,068 KB
testcase_06 AC 132 ms
54,292 KB
testcase_07 AC 135 ms
54,128 KB
testcase_08 AC 132 ms
53,884 KB
testcase_09 AC 137 ms
53,992 KB
testcase_10 AC 131 ms
54,076 KB
testcase_11 AC 131 ms
54,076 KB
testcase_12 AC 132 ms
53,964 KB
testcase_13 AC 189 ms
53,188 KB
testcase_14 AC 134 ms
54,000 KB
testcase_15 AC 133 ms
54,092 KB
testcase_16 AC 135 ms
54,108 KB
testcase_17 AC 132 ms
53,892 KB
testcase_18 AC 469 ms
54,132 KB
testcase_19 AC 254 ms
54,200 KB
testcase_20 AC 239 ms
54,204 KB
testcase_21 AC 383 ms
53,860 KB
testcase_22 AC 416 ms
54,268 KB
testcase_23 AC 413 ms
54,484 KB
testcase_24 AC 141 ms
54,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No523{
	static long TMP = 1000000007;
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		long N = sc.nextLong();

		long ans = 1;
		// answer is 2N!/2!^N
		for(long i = N; i > 0; i--){
			ans = (ans*i)%TMP;
			ans = (ans*(2*i-1))%TMP;
		}
		System.out.println(ans);
	}
}
0