結果

問題 No.1824 門\松\列
ユーザー 👑 rin204rin204
提出日時 2022-01-28 21:26:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 84,272 KB
最終ジャッジ日時 2024-06-09 14:15:20
合計ジャッジ時間 1,201 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
66,616 KB
testcase_01 AC 43 ms
67,072 KB
testcase_02 AC 64 ms
73,940 KB
testcase_03 AC 98 ms
84,272 KB
testcase_04 AC 64 ms
73,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = [0] * (10 ** 6 + 1)
ans[3] = 4
for i in range(4, 10 ** 6 + 1):
    ans[i] = ans[i - 1] + (i - 1) * (i - 2) * 2

def solve():
    n = int(input())
    print(ans[n])
    
    
for _ in range(int(input())):
    solve()
0