結果

問題 No.727 仲介人moko
ユーザー hedwig100hedwig100
提出日時 2020-05-01 15:46:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 428 ms / 1,000 ms
コード長 311 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-06-06 14:20:47
合計ジャッジ時間 5,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 39 ms
11,904 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 198 ms
27,904 KB
testcase_15 AC 320 ms
39,552 KB
testcase_16 AC 168 ms
24,832 KB
testcase_17 AC 203 ms
28,416 KB
testcase_18 AC 146 ms
22,528 KB
testcase_19 AC 365 ms
43,372 KB
testcase_20 AC 205 ms
28,544 KB
testcase_21 AC 122 ms
20,096 KB
testcase_22 AC 105 ms
18,560 KB
testcase_23 AC 398 ms
47,360 KB
testcase_24 AC 428 ms
49,792 KB
testcase_25 AC 276 ms
35,764 KB
testcase_26 AC 333 ms
41,216 KB
testcase_27 AC 281 ms
35,584 KB
testcase_28 AC 37 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 13
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)

def main():
    N = int(input())
    dp = [0] * (N + 1)
    dp[1] = 1
    for i in range(2,N + 1):
        dp[i] = i*i*(2*i - 1)*dp[i - 1] % MOD
    print(dp[-1])
if __name__ == '__main__':
    main()
0