結果

問題 No.118 門松列(2)
ユーザー tnoda_tnoda_
提出日時 2015-01-25 16:42:02
言語 Go
(1.22.1)
結果
AC  
実行時間 321 ms / 5,000 ms
コード長 429 bytes
コンパイル時間 10,458 ms
コンパイル使用メモリ 242,040 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2024-10-10 03:04:52
合計ジャッジ時間 15,169 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,816 KB
testcase_01 AC 321 ms
7,844 KB
testcase_02 AC 312 ms
7,844 KB
testcase_03 AC 320 ms
7,844 KB
testcase_04 AC 321 ms
7,844 KB
testcase_05 AC 321 ms
7,840 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 295 ms
7,844 KB
testcase_10 AC 63 ms
6,820 KB
testcase_11 AC 86 ms
6,816 KB
testcase_12 AC 46 ms
6,816 KB
testcase_13 AC 27 ms
6,816 KB
testcase_14 AC 292 ms
7,844 KB
testcase_15 AC 8 ms
6,816 KB
testcase_16 AC 167 ms
6,820 KB
testcase_17 AC 25 ms
6,816 KB
testcase_18 AC 91 ms
6,816 KB
testcase_19 AC 155 ms
6,816 KB
testcase_20 AC 154 ms
6,816 KB
testcase_21 AC 242 ms
7,840 KB
testcase_22 AC 66 ms
6,820 KB
testcase_23 AC 221 ms
7,840 KB
testcase_24 AC 97 ms
6,816 KB
testcase_25 AC 135 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
)

// Prime number
const P = 1000000007

func main() {
	var n, z int64
	m := make(map[int64]int64)
	fmt.Scan(&n)
	z = n * (n - 1) * (n - 2) / 6
	for i := int64(0); i < n; i++ {
		var a int64
		fmt.Scan(&a)
		m[a]++
	}
	for _, x := range m {
		if x < 2 {
			continue
		}
		if x >= 2 {
			z -= (n - x) * x * (x - 1) / 2
		}
		if x >= 3 {
			z -= x * (x - 1) * (x - 2) / 6
		}
	}
	fmt.Println(z % P)
}
0