結果

問題 No.523 LED
ユーザー c-yanc-yan
提出日時 2021-02-01 04:31:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 59,304 KB
最終ジャッジ日時 2024-06-29 22:46:41
合計ジャッジ時間 2,729 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,512 KB
testcase_01 AC 35 ms
52,496 KB
testcase_02 AC 37 ms
58,776 KB
testcase_03 AC 35 ms
52,940 KB
testcase_04 AC 36 ms
52,212 KB
testcase_05 AC 169 ms
57,800 KB
testcase_06 AC 36 ms
52,252 KB
testcase_07 AC 37 ms
52,636 KB
testcase_08 AC 36 ms
52,804 KB
testcase_09 AC 38 ms
58,912 KB
testcase_10 AC 34 ms
52,112 KB
testcase_11 AC 36 ms
59,304 KB
testcase_12 AC 39 ms
57,668 KB
testcase_13 AC 62 ms
59,232 KB
testcase_14 AC 39 ms
58,508 KB
testcase_15 AC 36 ms
58,176 KB
testcase_16 AC 35 ms
58,160 KB
testcase_17 AC 35 ms
57,808 KB
testcase_18 AC 156 ms
57,580 KB
testcase_19 AC 79 ms
57,624 KB
testcase_20 AC 75 ms
57,920 KB
testcase_21 AC 127 ms
57,688 KB
testcase_22 AC 143 ms
58,652 KB
testcase_23 AC 139 ms
57,864 KB
testcase_24 AC 41 ms
58,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = 1000000007

N = int(input())

result = 1
for i in range(1, N * 2 + 1):
    result *= i
    result %= m
result *= pow(pow(2, N, m), m - 2, m)
result %= m
print(result)
0