結果

問題 No.1824 門\松\列
ユーザー ryusukeryusuke
提出日時 2022-01-28 22:43:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 1,195 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-12-30 09:14:29
合計ジャッジ時間 1,806 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,352 KB
testcase_01 AC 45 ms
51,328 KB
testcase_02 AC 75 ms
64,384 KB
testcase_03 AC 103 ms
76,544 KB
testcase_04 AC 75 ms
64,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = []
for _ in range(int(input())):
    n = int(input())

    # 中・小・大
    a = (n - 1) * n ** 2 // 2 - (n - 1) * n * (2 * n - 1) // 6 - n * (n - 1) + (n - 1) * n // 2

    # 中・大・小
    b = n ** 2 * (n - 1) // 2 - n * (n - 1) - (n - 1) * n * (2 * n - 1) // 6 + (n - 1) * n // 2

    # 大・小・中
    c = ((n - 2) * (n - 1) * (2 * n - 3) + 3 * ((n - 2) * (n - 1))) // 12

    # 小・大・中
    d = ((n - 2) * (n - 1) * (2 * n - 3) + 3 * ((n - 2) * (n - 1))) // 12

    ans.append(max(0, a) + max(0, b) + max(0, c) + max(0, d))

print(*ans ,sep='\n')
0