結果

問題 No.1824 門\松\列
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-28 21:39:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 67,460 KB
最終ジャッジ日時 2024-06-09 14:32:59
合計ジャッジ時間 890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,832 KB
testcase_01 AC 34 ms
51,940 KB
testcase_02 AC 41 ms
59,320 KB
testcase_03 AC 46 ms
67,460 KB
testcase_04 AC 41 ms
59,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 = (n-1)*n*(2*n-1)//6-(n-1)*n//2
    ans += n*(n+1)*(2*n+1)//6-3*n*(n+1)//2+2*n
    print(ans)
0