結果

問題 No.1824 門\松\列
ユーザー Akisawa3Akisawa3
提出日時 2022-02-12 22:38:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 241 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,952 KB
最終ジャッジ日時 2024-06-29 01:52:47
合計ジャッジ時間 3,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,824 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

T = int(input())
qs = [int(input()) for _ in range(T)]
s = 2
tmp = 0
mq = max(qs)
s = []
for j in range(3, mq+1):
        p = math.factorial(j-1) // math.factorial(j-3)
        s.append(p*2)

for q in qs:
    print(sum(s[:q-2]))
0