結果

問題 No.727 仲介人moko
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-01 00:02:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 1,000 ms
コード長 168 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 75,536 KB
最終ジャッジ日時 2024-09-13 02:43:07
合計ジャッジ時間 3,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
52,704 KB
testcase_02 AC 42 ms
58,600 KB
testcase_03 AC 41 ms
60,076 KB
testcase_04 AC 38 ms
53,356 KB
testcase_05 AC 37 ms
52,704 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 38 ms
52,880 KB
testcase_08 AC 38 ms
53,296 KB
testcase_09 AC 38 ms
52,948 KB
testcase_10 AC 39 ms
53,032 KB
testcase_11 AC 38 ms
52,832 KB
testcase_12 AC 38 ms
52,880 KB
testcase_13 AC 38 ms
53,312 KB
testcase_14 AC 74 ms
75,436 KB
testcase_15 AC 96 ms
75,316 KB
testcase_16 AC 68 ms
75,184 KB
testcase_17 AC 75 ms
75,384 KB
testcase_18 AC 64 ms
75,332 KB
testcase_19 AC 103 ms
75,336 KB
testcase_20 AC 73 ms
75,476 KB
testcase_21 AC 55 ms
70,388 KB
testcase_22 AC 53 ms
67,172 KB
testcase_23 AC 112 ms
75,368 KB
testcase_24 AC 116 ms
75,304 KB
testcase_25 AC 88 ms
75,304 KB
testcase_26 AC 100 ms
75,172 KB
testcase_27 AC 89 ms
75,536 KB
testcase_28 AC 43 ms
58,984 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