結果
問題 | No.1824 門\松\列 |
ユーザー | Akisawa3 |
提出日時 | 2022-02-12 22:58:56 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 295 bytes |
コンパイル時間 | 196 ms |
コンパイル使用メモリ | 82,288 KB |
実行使用メモリ | 92,436 KB |
最終ジャッジ日時 | 2024-06-29 02:13:06 |
合計ジャッジ時間 | 3,696 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
70,664 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
ソースコード
from itertools import accumulate from math import factorial T = int(input()) qs = [int(input()) for _ in range(T)] mq = max(qs) s = [] for j in range(3, mq+1): p = factorial(j-1) // factorial(j-3) s.append(p*2) accum_s = list(accumulate(s)) for q in qs: print(accum_s[q-3])