結果

問題 No.118 門松列(2)
ユーザー tyochiaityochiai
提出日時 2015-01-19 04:45:14
言語 Go
(1.22.1)
結果
AC  
実行時間 331 ms / 5,000 ms
コード長 731 bytes
コンパイル時間 11,685 ms
コンパイル使用メモリ 241,948 KB
実行使用メモリ 7,836 KB
最終ジャッジ日時 2024-10-10 02:55:17
合計ジャッジ時間 16,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,820 KB
testcase_01 AC 331 ms
7,828 KB
testcase_02 AC 317 ms
7,828 KB
testcase_03 AC 325 ms
7,828 KB
testcase_04 AC 328 ms
7,836 KB
testcase_05 AC 329 ms
7,828 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 308 ms
7,828 KB
testcase_10 AC 64 ms
6,820 KB
testcase_11 AC 88 ms
6,820 KB
testcase_12 AC 47 ms
6,816 KB
testcase_13 AC 27 ms
6,816 KB
testcase_14 AC 302 ms
7,828 KB
testcase_15 AC 8 ms
6,816 KB
testcase_16 AC 169 ms
6,816 KB
testcase_17 AC 26 ms
6,820 KB
testcase_18 AC 89 ms
6,816 KB
testcase_19 AC 147 ms
6,816 KB
testcase_20 AC 154 ms
6,816 KB
testcase_21 AC 244 ms
7,832 KB
testcase_22 AC 68 ms
6,820 KB
testcase_23 AC 226 ms
7,836 KB
testcase_24 AC 97 ms
6,816 KB
testcase_25 AC 137 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
)

func LenComb2(n int) float64 {
	N := float64(n)
	return float64(N*(N-1)) / float64(2*1)
}

func LenComb3(n int) float64 {
	N := float64(n)
	return float64(N*(N-1)*(N-2)) / float64(3*2*1)
}

func resolve(N int, A []int) int {
	B := make([]int, 101)
	for i := 0; i < N; i++ {
		B[A[i]] += 1
	}

	ret := LenComb3(N)
	for _, m := range B {
		if m <= 1 {
			continue
		}
		if m == 2 {
			ret -= LenComb2(m) * float64(N-m)
			continue
		}
		ret -= LenComb2(m)*float64(N-m) + LenComb3(m)
	}
	return int(math.Mod(ret, float64(1000000007)))
}

func main() {
	var N int

	fmt.Scanf("%d\n", &N)
	A := make([]int, N)
	for i := 0; i < N; i++ {
		fmt.Scanf("%d", &A[i])
	}

	fmt.Println(resolve(N, A))
}
0