結果

問題 No.727 仲介人moko
ユーザー rookzenorookzeno
提出日時 2018-08-25 01:33:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 451 ms / 1,000 ms
コード長 310 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-23 18:20:27
合計ジャッジ時間 5,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 42 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 215 ms
10,880 KB
testcase_15 AC 336 ms
10,880 KB
testcase_16 AC 184 ms
10,880 KB
testcase_17 AC 221 ms
10,880 KB
testcase_18 AC 156 ms
10,880 KB
testcase_19 AC 371 ms
10,880 KB
testcase_20 AC 216 ms
10,752 KB
testcase_21 AC 129 ms
10,880 KB
testcase_22 AC 113 ms
10,880 KB
testcase_23 AC 415 ms
10,880 KB
testcase_24 AC 451 ms
10,880 KB
testcase_25 AC 293 ms
10,880 KB
testcase_26 AC 359 ms
10,880 KB
testcase_27 AC 304 ms
10,880 KB
testcase_28 AC 38 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n=int(input())
mod = 1000000007
def fact(n):
    val = 1
    for i in range(2, n + 1):
        val *= i
        val %= mod
    return val
def fact2(n):
    val = 1
    for i in range(1, n + 1,2):
        val *= i
        val %= mod
    return val
ans = (fact(n)*fact(n)*fact2(2*n-1))%mod
print(ans)
0