結果

問題 No.118 門松列(2)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-02 18:15:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 347 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 82,712 KB
最終ジャッジ日時 2024-07-16 14:04:51
合計ジャッジ時間 2,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,848 KB
testcase_01 AC 66 ms
82,688 KB
testcase_02 AC 63 ms
82,712 KB
testcase_03 AC 63 ms
82,304 KB
testcase_04 AC 63 ms
82,304 KB
testcase_05 AC 63 ms
82,560 KB
testcase_06 AC 47 ms
55,680 KB
testcase_07 AC 43 ms
55,040 KB
testcase_08 AC 43 ms
55,424 KB
testcase_09 AC 63 ms
80,640 KB
testcase_10 AC 50 ms
65,664 KB
testcase_11 AC 53 ms
67,456 KB
testcase_12 AC 51 ms
64,384 KB
testcase_13 AC 48 ms
63,616 KB
testcase_14 AC 62 ms
80,640 KB
testcase_15 AC 48 ms
62,720 KB
testcase_16 AC 56 ms
72,576 KB
testcase_17 AC 48 ms
63,872 KB
testcase_18 AC 54 ms
67,072 KB
testcase_19 AC 54 ms
70,656 KB
testcase_20 AC 55 ms
71,936 KB
testcase_21 AC 62 ms
78,464 KB
testcase_22 AC 50 ms
66,176 KB
testcase_23 AC 59 ms
76,416 KB
testcase_24 AC 51 ms
68,224 KB
testcase_25 AC 57 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
# input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))
mod = 10**9 + 7

C = Counter(A)
ans = N*(N-1)*(N-2)//6

for v in C.values():
    
    ans -= v*(v-1)//2*(N-v) + v*(v-1)*(v-2)//6
    ans %= mod

print(ans)
0