結果

問題 No.523 LED
ユーザー hedwig100hedwig100
提出日時 2020-05-26 18:07:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,112 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 75,268 KB
最終ジャッジ日時 2024-10-13 02:48:45
合計ジャッジ時間 7,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,536 KB
testcase_01 AC 37 ms
51,944 KB
testcase_02 AC 46 ms
65,472 KB
testcase_03 AC 37 ms
52,016 KB
testcase_04 AC 37 ms
53,124 KB
testcase_05 AC 1,112 ms
74,920 KB
testcase_06 AC 38 ms
52,556 KB
testcase_07 AC 37 ms
52,024 KB
testcase_08 AC 37 ms
52,404 KB
testcase_09 AC 43 ms
60,176 KB
testcase_10 AC 37 ms
52,296 KB
testcase_11 AC 38 ms
53,296 KB
testcase_12 AC 38 ms
52,552 KB
testcase_13 AC 244 ms
75,136 KB
testcase_14 AC 38 ms
52,516 KB
testcase_15 AC 39 ms
57,768 KB
testcase_16 AC 37 ms
52,940 KB
testcase_17 AC 41 ms
57,592 KB
testcase_18 AC 1,105 ms
75,004 KB
testcase_19 AC 417 ms
75,032 KB
testcase_20 AC 370 ms
74,600 KB
testcase_21 AC 834 ms
75,216 KB
testcase_22 AC 940 ms
74,920 KB
testcase_23 AC 940 ms
75,268 KB
testcase_24 AC 55 ms
73,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
N = int(input())
dp = 1
for i in range(1,N):
    dp = dp * (2*i + 2)*(2*i + 1)//2 % MOD
print(dp)
0