結果
| 問題 | No.523 LED |
| コンテスト | |
| ユーザー |
c-yan
|
| 提出日時 | 2021-02-01 04:32:13 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 168 bytes |
| 記録 | |
| コンパイル時間 | 913 ms |
| コンパイル使用メモリ | 20,576 KB |
| 実行使用メモリ | 30,592 KB |
| 最終ジャッジ日時 | 2026-03-19 14:03:12 |
| 合計ジャッジ時間 | 21,660 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 TLE * 5 |
ソースコード
m = 1000000007
N = int(input())
result = 1
for i in range(1, N * 2 + 1):
result *= i
result %= m
result *= pow(pow(2, N, m), -1, m)
result %= m
print(result)
c-yan