結果

問題 No.523 LED
ユーザー H20H20
提出日時 2021-01-14 18:40:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 133 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 425,116 KB
最終ジャッジ日時 2024-11-24 11:00:41
合計ジャッジ時間 22,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
15,616 KB
testcase_01 AC 27 ms
375,040 KB
testcase_02 AC 95 ms
24,832 KB
testcase_03 AC 26 ms
389,504 KB
testcase_04 AC 26 ms
15,872 KB
testcase_05 TLE -
testcase_06 AC 26 ms
15,744 KB
testcase_07 AC 27 ms
396,928 KB
testcase_08 AC 26 ms
15,616 KB
testcase_09 AC 66 ms
15,744 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 1,124 ms
161,280 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 31 ms
11,136 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 32 ms
11,392 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,876 ms
259,216 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 132 ms
409,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 10**9+7
fact = [1]
for n in range(1,2*N+1):
    fact.append(fact[-1]*n%MOD)
print(fact[2*N]*pow(2,-N,MOD)%MOD)
0