結果

問題 No.727 仲介人moko
ユーザー convexineqconvexineq
提出日時 2021-03-15 02:16:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 110 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 59,820 KB
最終ジャッジ日時 2024-11-06 15:23:50
合計ジャッジ時間 2,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,624 KB
testcase_01 AC 39 ms
52,476 KB
testcase_02 AC 43 ms
58,048 KB
testcase_03 AC 43 ms
59,320 KB
testcase_04 AC 37 ms
52,048 KB
testcase_05 AC 42 ms
53,300 KB
testcase_06 AC 39 ms
52,644 KB
testcase_07 AC 39 ms
52,016 KB
testcase_08 AC 39 ms
52,760 KB
testcase_09 AC 38 ms
51,720 KB
testcase_10 AC 38 ms
52,360 KB
testcase_11 AC 42 ms
51,996 KB
testcase_12 AC 39 ms
52,340 KB
testcase_13 AC 39 ms
52,372 KB
testcase_14 AC 50 ms
57,864 KB
testcase_15 AC 56 ms
58,236 KB
testcase_16 AC 50 ms
58,388 KB
testcase_17 AC 51 ms
58,192 KB
testcase_18 AC 49 ms
58,220 KB
testcase_19 AC 58 ms
59,516 KB
testcase_20 AC 51 ms
58,332 KB
testcase_21 AC 46 ms
58,360 KB
testcase_22 AC 45 ms
58,668 KB
testcase_23 AC 61 ms
58,464 KB
testcase_24 AC 61 ms
59,076 KB
testcase_25 AC 55 ms
58,656 KB
testcase_26 AC 58 ms
59,820 KB
testcase_27 AC 56 ms
58,048 KB
testcase_28 AC 43 ms
58,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
MOD = 10**9+7
ans = 1
for i in range(1,n+1):
    ans = ans*i%MOD*i%MOD*(2*i-1)%MOD
print(ans)
0