結果

問題 No.1824 門\松\列
ユーザー ああいいああいい
提出日時 2022-01-28 21:42:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 76,448 KB
最終ジャッジ日時 2024-06-09 14:41:26
合計ジャッジ時間 804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,800 KB
testcase_01 AC 31 ms
51,928 KB
testcase_02 AC 57 ms
65,624 KB
testcase_03 AC 88 ms
76,448 KB
testcase_04 AC 51 ms
64,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    ans = (N-2) * (N-1) * N // 3 * 2
    print(ans)
0