結果

問題 No.523 LED
ユーザー H3PO4H3PO4
提出日時 2020-09-13 09:40:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 116 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,436 KB
最終ジャッジ日時 2024-06-11 17:03:54
合計ジャッジ時間 5,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 32 ms
51,456 KB
testcase_02 AC 38 ms
60,156 KB
testcase_03 AC 31 ms
51,712 KB
testcase_04 AC 31 ms
51,584 KB
testcase_05 AC 726 ms
75,008 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 33 ms
51,584 KB
testcase_08 AC 33 ms
51,712 KB
testcase_09 AC 37 ms
57,856 KB
testcase_10 AC 33 ms
51,712 KB
testcase_11 AC 33 ms
51,840 KB
testcase_12 AC 31 ms
51,712 KB
testcase_13 AC 155 ms
75,248 KB
testcase_14 AC 32 ms
51,456 KB
testcase_15 AC 35 ms
57,344 KB
testcase_16 AC 33 ms
51,840 KB
testcase_17 AC 35 ms
57,856 KB
testcase_18 AC 693 ms
74,880 KB
testcase_19 AC 261 ms
75,436 KB
testcase_20 AC 244 ms
75,184 KB
testcase_21 AC 537 ms
75,008 KB
testcase_22 AC 596 ms
75,292 KB
testcase_23 AC 573 ms
75,008 KB
testcase_24 AC 41 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 1000000007
ans = 1
for i in range(N):
    ans = ans * (2 * i + 1) * (i + 1) % MOD
print(ans)
0