結果

問題 No.523 LED
ユーザー 👑 rin204rin204
提出日時 2022-07-04 14:25:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 59,272 KB
最終ジャッジ日時 2024-12-14 03:51:17
合計ジャッジ時間 3,438 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,528 KB
testcase_01 AC 40 ms
52,104 KB
testcase_02 AC 45 ms
57,684 KB
testcase_03 AC 41 ms
52,484 KB
testcase_04 AC 41 ms
53,708 KB
testcase_05 AC 180 ms
58,560 KB
testcase_06 AC 40 ms
51,944 KB
testcase_07 AC 40 ms
52,732 KB
testcase_08 AC 39 ms
52,276 KB
testcase_09 AC 44 ms
58,124 KB
testcase_10 AC 40 ms
51,956 KB
testcase_11 AC 44 ms
58,084 KB
testcase_12 AC 42 ms
57,988 KB
testcase_13 AC 69 ms
58,344 KB
testcase_14 AC 43 ms
58,168 KB
testcase_15 AC 42 ms
58,364 KB
testcase_16 AC 42 ms
59,272 KB
testcase_17 AC 43 ms
58,900 KB
testcase_18 AC 180 ms
58,488 KB
testcase_19 AC 92 ms
58,736 KB
testcase_20 AC 85 ms
57,804 KB
testcase_21 AC 148 ms
58,044 KB
testcase_22 AC 159 ms
58,072 KB
testcase_23 AC 158 ms
58,260 KB
testcase_24 AC 46 ms
58,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n = int(input())
ans = 1
for i in range(1, 2 * n + 1):
    ans *= i
    ans %= MOD
ans *= pow(pow(2, n, MOD), MOD - 2, MOD)
print(ans % MOD)
0