結果
問題 | No.1824 門\松\列 |
ユーザー | ys |
提出日時 | 2022-03-06 23:40:41 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 162 bytes |
コンパイル時間 | 487 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 63,488 KB |
最終ジャッジ日時 | 2024-07-21 10:11:12 |
合計ジャッジ時間 | 4,124 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
63,232 KB |
testcase_01 | AC | 44 ms
57,344 KB |
testcase_02 | AC | 61 ms
63,488 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
ソースコード
for i in range(int(input())): N = int(input()) ans = 0 for i in range(1, N + 1): ans += (N - i) * (N - i - 1) ans += (i - 1) * (i - 2) print(ans)