結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,196 KB
testcase_01 AC 38 ms
51,644 KB
testcase_02 AC 41 ms
58,888 KB
testcase_03 AC 42 ms
57,996 KB
testcase_04 AC 39 ms
52,192 KB
testcase_05 AC 39 ms
52,860 KB
testcase_06 AC 38 ms
52,840 KB
testcase_07 AC 38 ms
52,556 KB
testcase_08 AC 41 ms
52,764 KB
testcase_09 AC 39 ms
52,124 KB
testcase_10 AC 40 ms
51,896 KB
testcase_11 AC 38 ms
52,272 KB
testcase_12 AC 39 ms
51,756 KB
testcase_13 AC 38 ms
51,944 KB
testcase_14 AC 50 ms
58,392 KB
testcase_15 AC 56 ms
59,100 KB
testcase_16 AC 48 ms
57,768 KB
testcase_17 AC 51 ms
57,912 KB
testcase_18 AC 48 ms
58,376 KB
testcase_19 AC 57 ms
58,588 KB
testcase_20 AC 50 ms
57,392 KB
testcase_21 AC 46 ms
58,052 KB
testcase_22 AC 45 ms
58,788 KB
testcase_23 AC 59 ms
58,140 KB
testcase_24 AC 59 ms
58,224 KB
testcase_25 AC 55 ms
58,484 KB
testcase_26 AC 56 ms
57,804 KB
testcase_27 AC 53 ms
58,960 KB
testcase_28 AC 42 ms
58,508 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