結果

問題 No.523 LED
ユーザー 37zigen37zigen
提出日時 2020-03-22 05:22:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,863 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 78,556 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-06-06 21:05:11
合計ジャッジ時間 16,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,012 KB
testcase_01 AC 141 ms
41,224 KB
testcase_02 AC 164 ms
41,384 KB
testcase_03 AC 134 ms
41,224 KB
testcase_04 AC 132 ms
41,472 KB
testcase_05 AC 1,863 ms
41,596 KB
testcase_06 AC 136 ms
41,216 KB
testcase_07 AC 134 ms
41,360 KB
testcase_08 AC 137 ms
41,360 KB
testcase_09 AC 157 ms
41,496 KB
testcase_10 AC 136 ms
41,472 KB
testcase_11 AC 138 ms
41,296 KB
testcase_12 AC 134 ms
41,612 KB
testcase_13 AC 473 ms
41,068 KB
testcase_14 AC 137 ms
40,960 KB
testcase_15 AC 142 ms
40,996 KB
testcase_16 AC 137 ms
41,232 KB
testcase_17 AC 142 ms
41,320 KB
testcase_18 AC 1,854 ms
41,424 KB
testcase_19 AC 752 ms
41,104 KB
testcase_20 AC 684 ms
41,344 KB
testcase_21 AC 1,420 ms
41,472 KB
testcase_22 AC 1,582 ms
41,004 KB
testcase_23 AC 1,578 ms
41,364 KB
testcase_24 AC 179 ms
41,364 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;
		for(long i=1;i<=N;++i)ans=ans*inv(2)%MOD;
		System.out.println(ans);
	}


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

}
0