結果

問題 No.1824 門\松\列
ユーザー Akisawa3Akisawa3
提出日時 2022-02-12 22:45:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 225 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 125,492 KB
最終ジャッジ日時 2024-06-29 01:58:17
合計ジャッジ時間 10,025 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from scipy.special import perm

T = int(input())
qs = [int(input()) for _ in range(T)]
mq = max(qs)
s = []
for j in range(3, mq+1):
        p = perm(j, 2, exact=True)
        s.append(p*2)
for q in qs:
    print(sum(s[:q-2]))
0