結果

問題 No.287 場合の数
ユーザー xuzijian629xuzijian629
提出日時 2018-11-04 19:22:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,406 ms / 5,000 ms
コード長 651 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 206,456 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-30 21:53:10
合計ジャッジ時間 17,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 708 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1,406 ms
6,944 KB
testcase_04 AC 1,352 ms
6,940 KB
testcase_05 AC 708 ms
6,940 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 145 ms
6,940 KB
testcase_08 AC 350 ms
6,940 KB
testcase_09 AC 739 ms
6,944 KB
testcase_10 AC 1,353 ms
6,940 KB
testcase_11 AC 80 ms
6,944 KB
testcase_12 AC 1,100 ms
6,944 KB
testcase_13 AC 23 ms
6,944 KB
testcase_14 AC 190 ms
6,944 KB
testcase_15 AC 674 ms
6,940 KB
testcase_16 AC 217 ms
6,940 KB
testcase_17 AC 1,016 ms
6,944 KB
testcase_18 AC 136 ms
6,940 KB
testcase_19 AC 848 ms
6,940 KB
testcase_20 AC 276 ms
6,940 KB
testcase_21 AC 741 ms
6,940 KB
testcase_22 AC 675 ms
6,940 KB
testcase_23 AC 478 ms
6,948 KB
testcase_24 AC 203 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = int64_t;
using vi = vector<i64>;
using vvi = vector<vi>;

int main() {
    int n;
    cin >> n;
    unordered_map<i64, i64> cnt;
    for (int i = 0; i <= n; i++) {
        for (int j = 0; j <= n; j++) {
            for (int k = 0; k <= n; k++) {
                for (int l = 0; l <= n; l++) {
                    cnt[6 * n - i - j - k - l]++;
                }
            }
        }
    }

    i64 ans = 0;
    for (auto& p: cnt) {
        if (cnt.count(6 * n - p.first)) {
            ans += p.second * cnt[6 * n - p.first];
        }
    }
    cout << ans << endl;
}                       
0