結果

問題 No.523 LED
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-14 13:45:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 771 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 75,224 KB
最終ジャッジ日時 2024-10-10 11:52:44
合計ジャッジ時間 6,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,384 KB
testcase_01 AC 37 ms
52,188 KB
testcase_02 AC 46 ms
61,736 KB
testcase_03 AC 38 ms
51,812 KB
testcase_04 AC 40 ms
53,404 KB
testcase_05 AC 768 ms
75,108 KB
testcase_06 AC 37 ms
52,948 KB
testcase_07 AC 37 ms
52,896 KB
testcase_08 AC 38 ms
52,316 KB
testcase_09 AC 42 ms
57,976 KB
testcase_10 AC 38 ms
52,152 KB
testcase_11 AC 38 ms
53,012 KB
testcase_12 AC 39 ms
52,800 KB
testcase_13 AC 182 ms
75,224 KB
testcase_14 AC 38 ms
52,416 KB
testcase_15 AC 43 ms
58,904 KB
testcase_16 AC 41 ms
52,604 KB
testcase_17 AC 46 ms
58,196 KB
testcase_18 AC 771 ms
74,896 KB
testcase_19 AC 301 ms
75,156 KB
testcase_20 AC 270 ms
75,148 KB
testcase_21 AC 587 ms
75,076 KB
testcase_22 AC 650 ms
75,172 KB
testcase_23 AC 655 ms
75,152 KB
testcase_24 AC 53 ms
68,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 1000000007
ans = 1
for i in range(1, n+1):
    ans *= i
    ans *= 2*i-1
    ans %= mod
print(ans)
0