結果

問題 No.1623 三角形の制作
ユーザー atjh16atjh16
提出日時 2021-09-07 20:01:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 1,502 ms
コンパイル使用メモリ 166,152 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 06:57:14
合計ジャッジ時間 4,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 82 ms
6,944 KB
testcase_03 AC 80 ms
6,940 KB
testcase_04 AC 80 ms
6,940 KB
testcase_05 AC 137 ms
6,940 KB
testcase_06 AC 25 ms
6,944 KB
testcase_07 AC 79 ms
6,940 KB
testcase_08 AC 27 ms
6,940 KB
testcase_09 AC 77 ms
6,944 KB
testcase_10 AC 113 ms
6,940 KB
testcase_11 AC 91 ms
6,940 KB
testcase_12 AC 42 ms
6,940 KB
testcase_13 AC 50 ms
6,940 KB
testcase_14 AC 50 ms
6,940 KB
testcase_15 AC 121 ms
6,944 KB
testcase_16 AC 122 ms
6,940 KB
testcase_17 AC 118 ms
6,944 KB
testcase_18 AC 151 ms
6,940 KB
testcase_19 AC 51 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n, t;
long long r[3001], g[3001], b[3001];
long long m = 0;

int main()
{
	cin >> n;

	for (int i = 0; i < n; i++) {
		cin >> t;
		r[t]++;
	}

	for (int i = 0; i < n; i++) {
		cin >> t;
		g[t]++;
	}

	for (int i = 0; i < n; i++) {
		cin >> t;
		b[t]++;
	}

	for (int i = 1; i <= 3000; i++) {
		b[i] = b[i] + b[i - 1];
	}

	for (int i = 1; i <= 3000; i++) {
		if (r[i] > 0) {
			for (int j = 1; j <= i; j++) {
				m += r[i] * g[j] * (b[i] - b[i - j]);
			}
		}
	}

	cout << m << endl;
}
0