結果

問題 No.1824 門\松\列
ユーザー irumo8202irumo8202
提出日時 2022-01-28 22:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 91,816 KB
最終ジャッジ日時 2024-06-09 16:13:56
合計ジャッジ時間 1,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
75,492 KB
testcase_01 AC 56 ms
73,744 KB
testcase_02 AC 74 ms
82,448 KB
testcase_03 AC 111 ms
91,816 KB
testcase_04 AC 75 ms
82,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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

for _ in range(T):
    N = int(input())
    print(acc[N] * 4)
0