結果

問題 No.1623 三角形の制作
ユーザー 小野寺健小野寺健
提出日時 2021-11-01 23:09:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,051 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 38,272 KB
最終ジャッジ日時 2024-10-10 16:30:43
合計ジャッジ時間 14,322 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 953 ms
34,688 KB
testcase_03 AC 939 ms
34,176 KB
testcase_04 AC 913 ms
34,176 KB
testcase_05 AC 1,051 ms
36,476 KB
testcase_06 AC 773 ms
16,640 KB
testcase_07 AC 907 ms
34,304 KB
testcase_08 AC 778 ms
17,024 KB
testcase_09 AC 901 ms
33,664 KB
testcase_10 AC 1,020 ms
37,760 KB
testcase_11 AC 940 ms
34,432 KB
testcase_12 AC 177 ms
24,704 KB
testcase_13 AC 195 ms
24,960 KB
testcase_14 AC 195 ms
24,832 KB
testcase_15 AC 362 ms
36,392 KB
testcase_16 AC 364 ms
36,244 KB
testcase_17 AC 357 ms
36,288 KB
testcase_18 AC 365 ms
38,272 KB
testcase_19 AC 247 ms
34,304 KB
testcase_20 AC 83 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
r = gets.split(" ").map{|s| s.to_i}.sort
g = gets.split(" ").map{|s| s.to_i}.sort
b = gets.split(" ").map{|s| s.to_i}.sort

max = 3*10**3+1

cnt_r = Array.new(max, 0)
cnt_g = Array.new(max, 0)
cnt_b = Array.new(max, 0)

0.upto(n-1) {|i|
	cnt_r[r[i]] += 1
	cnt_g[g[i]] += 1
	cnt_b[b[i]] += 1
}

1.upto(max-1) {|i|
	cnt_r[i] += cnt_r[i-1]
	cnt_g[i] += cnt_g[i-1]
	cnt_b[i] += cnt_b[i-1]
}

cnt = 0
1.upto(max-1) {|a|
	next if cnt_r[a] == cnt_r[a-1]
	rn = cnt_r[a] - cnt_r[a-1]
	1.upto(a) {|j|
		gn = cnt_g[j] - cnt_g[j-1]
		bn = cnt_b[a] - cnt_b[a-j]
		cnt += rn * gn * bn
	}
}

puts cnt
0