結果

問題 No.523 LED
ユーザー neterukunneterukun
提出日時 2019-06-14 01:13:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,152 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 75,476 KB
最終ジャッジ日時 2024-11-06 08:57:21
合計ジャッジ時間 8,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,232 KB
testcase_01 AC 37 ms
52,516 KB
testcase_02 AC 59 ms
75,140 KB
testcase_03 AC 37 ms
52,188 KB
testcase_04 AC 36 ms
52,156 KB
testcase_05 AC 1,143 ms
75,304 KB
testcase_06 AC 37 ms
52,320 KB
testcase_07 AC 37 ms
52,896 KB
testcase_08 AC 37 ms
52,892 KB
testcase_09 AC 49 ms
66,696 KB
testcase_10 AC 38 ms
52,504 KB
testcase_11 AC 38 ms
52,404 KB
testcase_12 AC 37 ms
53,456 KB
testcase_13 AC 249 ms
75,100 KB
testcase_14 AC 37 ms
53,260 KB
testcase_15 AC 41 ms
60,056 KB
testcase_16 AC 38 ms
53,020 KB
testcase_17 AC 42 ms
59,896 KB
testcase_18 AC 1,152 ms
75,476 KB
testcase_19 AC 428 ms
75,172 KB
testcase_20 AC 387 ms
75,144 KB
testcase_21 AC 856 ms
75,160 KB
testcase_22 AC 950 ms
75,328 KB
testcase_23 AC 951 ms
75,108 KB
testcase_24 AC 66 ms
75,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
MOD = 10**9 + 7
ans = 1
inv2 = pow(2, MOD-2, MOD)

for i in range(n):
    ans *= (2*(i+1)-1) * 2*(i+1)
    ans *= inv2
    ans %= MOD
print(ans)
0