結果
問題 | No.1824 門\松\列 |
ユーザー | koanviolin |
提出日時 | 2022-01-28 21:58:25 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 2,648 ms |
コンパイル使用メモリ | 73,644 KB |
実行使用メモリ | 47,412 KB |
最終ジャッジ日時 | 2024-12-30 06:40:48 |
合計ジャッジ時間 | 4,205 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
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); } } }