結果

問題 No.1824 門\松\列
ユーザー koanviolinkoanviolin
提出日時 2022-01-28 21:58:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 59,032 KB
最終ジャッジ日時 2024-06-09 15:02:12
合計ジャッジ時間 3,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.util.*;

public class Main {

    public static void main(String[] argv){
        Scanner sc = new Scanner(System.in);
        int t= sc.nextInt();
        while(t>0) {
            t--;
            long n = sc.nextLong();
            long k = (n-2)*(n-1)*(2*n-3)/3 + (n -2 ) * (n-2);
            System.out.println(k);
        }


    }
}
0