結果

問題 No.1824 門\松\列
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-28 21:52:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 83,928 KB
最終ジャッジ日時 2024-06-09 14:56:56
合計ジャッジ時間 999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
66,292 KB
testcase_01 AC 40 ms
66,284 KB
testcase_02 AC 59 ms
73,576 KB
testcase_03 AC 91 ms
83,928 KB
testcase_04 AC 58 ms
73,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 10**6+5
ans = [0]*M
for i in range(1,M):
    ans[i] = ans[i-1]+i*(i+1)*2
t = int(input())
for i in range(t):
    n = int(input())
    print(ans[n-2])
0