結果

問題 No.1824 門\松\列
ユーザー koanviolinkoanviolin
提出日時 2022-01-28 22:00:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 58,932 KB
最終ジャッジ日時 2024-06-09 15:05:28
合計ジャッジ時間 3,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,340 KB
testcase_01 AC 133 ms
53,880 KB
testcase_02 AC 237 ms
55,080 KB
testcase_03 AC 377 ms
58,932 KB
testcase_04 AC 233 ms
55,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

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


    }
}
0