結果

問題 No.287 場合の数
ユーザー tentententen
提出日時 2020-10-16 19:21:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 716 bytes
コンパイル時間 3,151 ms
コンパイル使用メモリ 79,900 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-07-20 21:03:32
合計ジャッジ時間 7,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,152 KB
testcase_01 AC 126 ms
41,424 KB
testcase_02 AC 119 ms
41,396 KB
testcase_03 AC 125 ms
41,280 KB
testcase_04 AC 125 ms
41,200 KB
testcase_05 AC 112 ms
39,992 KB
testcase_06 AC 114 ms
41,196 KB
testcase_07 AC 120 ms
41,388 KB
testcase_08 AC 116 ms
40,920 KB
testcase_09 AC 105 ms
39,900 KB
testcase_10 AC 119 ms
41,072 KB
testcase_11 AC 108 ms
39,968 KB
testcase_12 AC 115 ms
41,248 KB
testcase_13 AC 122 ms
41,048 KB
testcase_14 AC 128 ms
40,904 KB
testcase_15 AC 129 ms
41,280 KB
testcase_16 AC 127 ms
41,188 KB
testcase_17 AC 127 ms
41,392 KB
testcase_18 AC 133 ms
41,688 KB
testcase_19 AC 133 ms
41,140 KB
testcase_20 AC 106 ms
40,168 KB
testcase_21 AC 125 ms
41,212 KB
testcase_22 AC 117 ms
41,152 KB
testcase_23 AC 115 ms
41,324 KB
testcase_24 AC 114 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] twin = new int[n * 2 + 1];
        for (int i = 0; i <= n; i++) {
            for (int j = 0; j <= n; j++) {
                twin[i + j]++;
            }
        }
        int[] quad = new int[n * 4 + 1];
        for (int i = 0; i <= 2 * n; i++) {
            for (int j = 0; j <= 2 * n; j++) {
                quad[i + j] += twin[i] * twin[j];
            }
        }
        long ans = 0;
        for (int i = 2 * n; i <= 4 * n; i++) {
            ans += (long)quad[i] * quad[6 * n - i];
        }
        System.out.println(ans);
    }
} 
0