結果
問題 | No.1824 門\松\列 |
ユーザー | brthyyjp |
提出日時 | 2022-01-28 21:36:02 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 286 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 69,684 KB |
最終ジャッジ日時 | 2024-06-09 14:29:01 |
合計ジャッジ時間 | 3,886 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
65,464 KB |
testcase_01 | AC | 45 ms
58,648 KB |
testcase_02 | AC | 49 ms
62,600 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
ソースコード
import sys import io, os input = sys.stdin.buffer.readline #input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline t = int(input()) for _ in range(t): n = int(input()) ans = 0 for i in range(n-1, 0, -1): #print(i, (n-i)*(n-i-1)) ans += (n-i)*(n-i-1) for i in range(n, 1, -1): #print(i, (i-1)*(i-2)) ans += (i-1)*(i-2) print(ans)