結果

問題 No.287 場合の数
ユーザー masamasa
提出日時 2015-10-09 23:43:46
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 496 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 61,428 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 23:56:45
合計ジャッジ時間 2,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 57 ms
5,248 KB
testcase_04 AC 56 ms
5,248 KB
testcase_05 AC 32 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 7 ms
5,248 KB
testcase_08 AC 13 ms
5,248 KB
testcase_09 AC 33 ms
5,248 KB
testcase_10 AC 54 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 44 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 8 ms
5,248 KB
testcase_15 AC 31 ms
5,248 KB
testcase_16 AC 9 ms
5,248 KB
testcase_17 AC 36 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 38 ms
5,248 KB
testcase_20 AC 11 ms
5,248 KB
testcase_21 AC 34 ms
5,248 KB
testcase_22 AC 30 ms
5,248 KB
testcase_23 AC 22 ms
5,248 KB
testcase_24 AC 9 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>

using namespace std;

int main() {
	int n;

	cin >> n;

	vector<long long> sum(8*n + 1, 0);

	for (int a = 0; a <= n; a++) {
	for (int b = 0; b <= n; b++) {
	for (int c = 0; c <= n; c++) {
	for (int d = 0; d <= n; d++) {
		sum[a + b + c + d]++;
	}}}}

	long long ans = 0;
	for (int i = 0; i <= 4 * n; i++) {
		ans += sum[i] * sum[6 * n - i];
	}

	cout << ans << endl;
	return 0;
}
0