結果

問題 No.523 LED
ユーザー mkawa2mkawa2
提出日時 2020-01-03 18:04:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 825 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 75,008 KB
最終ジャッジ日時 2024-11-22 19:19:13
合計ジャッジ時間 6,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 48 ms
59,520 KB
testcase_03 AC 45 ms
51,328 KB
testcase_04 AC 41 ms
51,328 KB
testcase_05 AC 825 ms
74,240 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 40 ms
51,328 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 45 ms
56,576 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 40 ms
51,584 KB
testcase_12 AC 41 ms
51,328 KB
testcase_13 AC 197 ms
74,496 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 44 ms
56,832 KB
testcase_16 AC 40 ms
51,584 KB
testcase_17 AC 44 ms
56,960 KB
testcase_18 AC 821 ms
74,752 KB
testcase_19 AC 323 ms
74,624 KB
testcase_20 AC 290 ms
74,624 KB
testcase_21 AC 627 ms
74,752 KB
testcase_22 AC 710 ms
75,008 KB
testcase_23 AC 702 ms
74,496 KB
testcase_24 AC 57 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    #(2n)!/2^n
    md=10**9+7
    n=int(input())
    ans=1
    for x in range(1,n+1):
        ans=(ans*x*(2*x-1))%md
    print(ans)

main()
0