結果

問題 No.727 仲介人moko
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-01 00:02:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 168 bytes
コンパイル時間 1,149 ms
コンパイル使用メモリ 87,148 KB
実行使用メモリ 76,816 KB
最終ジャッジ日時 2023-10-11 03:13:59
合計ジャッジ時間 5,141 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,280 KB
testcase_01 AC 71 ms
71,404 KB
testcase_02 AC 76 ms
76,076 KB
testcase_03 AC 76 ms
76,100 KB
testcase_04 AC 72 ms
71,168 KB
testcase_05 AC 72 ms
71,276 KB
testcase_06 AC 70 ms
71,568 KB
testcase_07 AC 71 ms
71,392 KB
testcase_08 AC 74 ms
71,440 KB
testcase_09 AC 71 ms
71,468 KB
testcase_10 AC 71 ms
71,168 KB
testcase_11 AC 70 ms
71,472 KB
testcase_12 AC 69 ms
71,296 KB
testcase_13 AC 72 ms
71,428 KB
testcase_14 AC 105 ms
76,796 KB
testcase_15 AC 130 ms
76,372 KB
testcase_16 AC 97 ms
76,600 KB
testcase_17 AC 106 ms
76,816 KB
testcase_18 AC 95 ms
76,816 KB
testcase_19 AC 137 ms
76,632 KB
testcase_20 AC 104 ms
76,572 KB
testcase_21 AC 88 ms
76,744 KB
testcase_22 AC 84 ms
76,168 KB
testcase_23 AC 145 ms
76,816 KB
testcase_24 AC 151 ms
76,688 KB
testcase_25 AC 120 ms
76,588 KB
testcase_26 AC 134 ms
76,376 KB
testcase_27 AC 120 ms
76,528 KB
testcase_28 AC 76 ms
76,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
N = int(input())

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