結果

問題 No.523 LED
ユーザー rlangevinrlangevin
提出日時 2023-01-26 00:23:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 769 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 75,248 KB
最終ジャッジ日時 2024-06-27 01:18:25
合計ジャッジ時間 6,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,056 KB
testcase_01 AC 39 ms
52,552 KB
testcase_02 AC 47 ms
62,564 KB
testcase_03 AC 39 ms
52,276 KB
testcase_04 AC 38 ms
53,016 KB
testcase_05 AC 769 ms
74,852 KB
testcase_06 AC 40 ms
51,812 KB
testcase_07 AC 39 ms
52,320 KB
testcase_08 AC 40 ms
52,756 KB
testcase_09 AC 42 ms
59,504 KB
testcase_10 AC 40 ms
51,904 KB
testcase_11 AC 39 ms
52,060 KB
testcase_12 AC 40 ms
52,332 KB
testcase_13 AC 182 ms
75,100 KB
testcase_14 AC 40 ms
52,568 KB
testcase_15 AC 43 ms
57,856 KB
testcase_16 AC 39 ms
52,484 KB
testcase_17 AC 43 ms
58,732 KB
testcase_18 AC 765 ms
75,088 KB
testcase_19 AC 299 ms
75,080 KB
testcase_20 AC 271 ms
74,988 KB
testcase_21 AC 585 ms
75,248 KB
testcase_22 AC 650 ms
75,088 KB
testcase_23 AC 659 ms
75,104 KB
testcase_24 AC 52 ms
69,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mod = 10 ** 9 + 7

ans = 1
for i in range(2 * N, 1, -2):
    ans *= i * (i - 1)//2
    ans %= mod
print(ans)
0