結果
問題 | No.1824 門\松\列 |
ユーザー | ikoma |
提出日時 | 2022-01-28 23:33:41 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 281 bytes |
コンパイル時間 | 351 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 67,456 KB |
最終ジャッジ日時 | 2024-06-09 17:06:54 |
合計ジャッジ時間 | 3,854 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
63,872 KB |
testcase_01 | AC | 48 ms
58,112 KB |
testcase_02 | AC | 48 ms
61,440 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
ソースコード
import sys input = sys.stdin.readline T=int(input()) for t in range(T): N=int(input()) ans = 0 for i in range(0,N-1): # a2が大きい ans += i*(2*(N-i)+(i-1))//2 # a2が小さい n=N-i-1 ans += n*(2*i+(n-1))//2 print(ans)