結果

問題 No.523 LED
ユーザー ぴろずぴろず
提出日時 2017-06-02 22:46:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 77,200 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-09-21 23:38:19
合計ジャッジ時間 8,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,256 KB
testcase_01 AC 131 ms
41,768 KB
testcase_02 AC 138 ms
41,536 KB
testcase_03 AC 129 ms
41,108 KB
testcase_04 AC 131 ms
41,296 KB
testcase_05 AC 467 ms
41,496 KB
testcase_06 AC 132 ms
41,036 KB
testcase_07 AC 122 ms
39,884 KB
testcase_08 AC 134 ms
41,640 KB
testcase_09 AC 141 ms
41,492 KB
testcase_10 AC 122 ms
39,888 KB
testcase_11 AC 133 ms
41,312 KB
testcase_12 AC 133 ms
41,168 KB
testcase_13 AC 205 ms
41,312 KB
testcase_14 AC 133 ms
41,436 KB
testcase_15 AC 138 ms
41,432 KB
testcase_16 AC 135 ms
41,176 KB
testcase_17 AC 136 ms
41,292 KB
testcase_18 AC 466 ms
41,456 KB
testcase_19 AC 253 ms
41,564 KB
testcase_20 AC 238 ms
41,288 KB
testcase_21 AC 378 ms
40,236 KB
testcase_22 AC 401 ms
41,164 KB
testcase_23 AC 416 ms
41,192 KB
testcase_24 AC 141 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no523;

import java.util.Scanner;

public class Main {
	public static long MOD = 1000000007;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long fact = 1;
		for(int i=1;i<=2*n;i++) {
			fact = fact * i % MOD;
		}
		long ans = fact * pow(inverse(2, MOD), n, MOD) % MOD;
		System.out.println(ans);
	}
	public static long pow(long a,long n,long mod) {
		long res = 1;
		while(n > 0) {
			if ((n & 1) > 0) {
				res = (res * a) % mod;
			}
			a = (a * a) % mod;
			n/=2;
		}
		return res;
	}
	public static long inverse(long a,long mod) {
		long b = mod, u = 1, v = 0;
		while(b > 0) {
			long temp;
			long t = a / b;
			a -= t * b;
			temp = a; a = b; b = temp;
			u -= t * v;
			temp = u; u = v; v = temp;
		}
		return (u % mod + mod) % mod;
	}
}
0