結果

問題 No.1623 三角形の制作
ユーザー laneguelanegue
提出日時 2021-07-23 22:00:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 1,609 ms
コンパイル使用メモリ 176,284 KB
実行使用メモリ 16,812 KB
最終ジャッジ日時 2024-06-22 11:56:15
合計ジャッジ時間 3,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 52 ms
10,856 KB
testcase_03 AC 51 ms
11,792 KB
testcase_04 AC 51 ms
10,740 KB
testcase_05 AC 84 ms
15,120 KB
testcase_06 AC 21 ms
6,944 KB
testcase_07 AC 49 ms
7,240 KB
testcase_08 AC 22 ms
6,940 KB
testcase_09 AC 49 ms
10,788 KB
testcase_10 AC 71 ms
13,896 KB
testcase_11 AC 58 ms
11,288 KB
testcase_12 AC 30 ms
6,944 KB
testcase_13 AC 37 ms
8,984 KB
testcase_14 AC 35 ms
7,044 KB
testcase_15 AC 72 ms
14,472 KB
testcase_16 AC 71 ms
14,284 KB
testcase_17 AC 73 ms
14,360 KB
testcase_18 AC 84 ms
16,812 KB
testcase_19 AC 37 ms
10,832 KB
testcase_20 AC 10 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
int MAX = 3 * 10 ^^ 3;

void main(){
	int n = readln.chomp.to!int;
	auto r = readln.split.to!(int[]);
	auto g = readln.split.to!(int[]);
	auto b = readln.split.to!(int[]);
	auto rcount = new ulong[MAX + 1];
	auto gcount = new ulong[MAX + 1];
	auto bsum = new ulong[MAX + 1];
	foreach(v; r){
		rcount[v] += 1;
	}
	foreach(v; g){
		gcount[v] += 1;
	}
	foreach(v; b){
		bsum[v] += 1;
	}
	for(auto i = 1; i <= MAX; i++){
		bsum[i] += bsum[i-1];
	}
	auto result = 0UL;
	for(auto i = 1; i <= MAX; i++){
		for(auto j = 1; j <= i; j++){
			result += rcount[i] * gcount[j] * (bsum[i] - bsum[i-j]);
		}
	}
	result.writeln;
}
0