結果

問題 No.523 LED
ユーザー realDivineJKrealDivineJK
提出日時 2020-09-20 18:39:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 59,568 KB
最終ジャッジ日時 2024-06-24 10:54:26
合計ジャッジ時間 2,894 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,760 KB
testcase_01 AC 39 ms
52,888 KB
testcase_02 AC 41 ms
58,788 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 38 ms
51,820 KB
testcase_05 AC 172 ms
59,236 KB
testcase_06 AC 37 ms
52,836 KB
testcase_07 AC 42 ms
53,000 KB
testcase_08 AC 37 ms
52,440 KB
testcase_09 AC 41 ms
58,524 KB
testcase_10 AC 39 ms
52,832 KB
testcase_11 AC 41 ms
58,784 KB
testcase_12 AC 40 ms
59,100 KB
testcase_13 AC 66 ms
58,660 KB
testcase_14 AC 39 ms
58,476 KB
testcase_15 AC 41 ms
58,140 KB
testcase_16 AC 41 ms
59,568 KB
testcase_17 AC 39 ms
58,080 KB
testcase_18 AC 173 ms
58,600 KB
testcase_19 AC 88 ms
59,352 KB
testcase_20 AC 81 ms
57,932 KB
testcase_21 AC 140 ms
58,492 KB
testcase_22 AC 153 ms
57,980 KB
testcase_23 AC 150 ms
58,028 KB
testcase_24 AC 44 ms
57,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 1000000007
def doubling(n, m):
    y = 1
    bas = n
    tmp = m
    while tmp:
        if tmp % 2:
            y *= bas
            y %= mod
        bas *= bas
        bas %= mod
        tmp >>= 1
    return y

def inved(a):
    x, y, u, v, k, l = 1, 0, 0, 1, a, mod
    while l:
        x, y, u, v = u, v, x - u * (k // l), y - v * (k // l)
        k, l = l, k % l
    return x % mod

S = 1
for i in range(2*N):
    S *= i + 1
    S %= mod
print(S*inved(doubling(2, N))%mod)
0