結果
問題 | No.1824 門\松\列 |
ユーザー | Akisawa3 |
提出日時 | 2022-02-12 22:55:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 214 ms / 2,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 82,308 KB |
実行使用メモリ | 215,936 KB |
最終ジャッジ日時 | 2024-06-29 02:09:24 |
合計ジャッジ時間 | 1,310 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,224 KB |
testcase_01 | AC | 185 ms
215,936 KB |
testcase_02 | AC | 58 ms
64,512 KB |
testcase_03 | AC | 214 ms
158,208 KB |
testcase_04 | AC | 190 ms
196,224 KB |
ソースコード
from itertools import accumulate T = int(input()) qs = [int(input()) for _ in range(T)] mq = max(qs) s = [] for j in range(3, mq+1): p = (j * j) - (3 * j) + 2 s.append(p*2) accum_s = list(accumulate(s)) for q in qs: print(accum_s[q-3])