結果

問題 No.523 LED
ユーザー 37zigen37zigen
提出日時 2020-03-22 05:23:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 78,200 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-06-06 21:06:34
合計ジャッジ時間 6,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,724 KB
testcase_01 AC 110 ms
53,976 KB
testcase_02 AC 116 ms
53,736 KB
testcase_03 AC 101 ms
52,860 KB
testcase_04 AC 107 ms
52,704 KB
testcase_05 AC 215 ms
53,660 KB
testcase_06 AC 113 ms
53,784 KB
testcase_07 AC 106 ms
52,700 KB
testcase_08 AC 99 ms
52,504 KB
testcase_09 AC 120 ms
53,940 KB
testcase_10 AC 105 ms
52,464 KB
testcase_11 AC 100 ms
52,884 KB
testcase_12 AC 101 ms
52,260 KB
testcase_13 AC 132 ms
53,736 KB
testcase_14 AC 114 ms
53,708 KB
testcase_15 AC 106 ms
52,904 KB
testcase_16 AC 121 ms
53,896 KB
testcase_17 AC 106 ms
54,344 KB
testcase_18 AC 199 ms
53,148 KB
testcase_19 AC 152 ms
54,048 KB
testcase_20 AC 145 ms
53,784 KB
testcase_21 AC 171 ms
52,708 KB
testcase_22 AC 178 ms
52,912 KB
testcase_23 AC 183 ms
52,860 KB
testcase_24 AC 124 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
	
	long inv(long a) {
		return pow(a,MOD-2);
	}
	
	long pow(long a,long n) {
		long ret=1;
		for(;n>0;n>>=1,a=a*a%MOD)if(n%2==1)ret=ret*a%MOD;
		return ret;
	}
	
	final long MOD=(long)1e9+7;
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int N=sc.nextInt();
		long ans=1;
		for(long i=1;i<=2*N;++i)ans=ans*i%MOD;
		ans=ans*pow(inv(2),N)%MOD;
		System.out.println(ans);
	}


	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0