結果

問題 No.118 門松列(2)
ユーザー roarisroaris
提出日時 2019-12-22 12:12:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 88,264 KB
最終ジャッジ日時 2024-09-14 02:54:46
合計ジャッジ時間 2,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
69,792 KB
testcase_01 AC 83 ms
88,264 KB
testcase_02 AC 81 ms
87,236 KB
testcase_03 AC 81 ms
87,968 KB
testcase_04 AC 78 ms
88,048 KB
testcase_05 AC 78 ms
87,412 KB
testcase_06 AC 48 ms
66,824 KB
testcase_07 AC 46 ms
65,392 KB
testcase_08 AC 48 ms
66,212 KB
testcase_09 AC 76 ms
86,192 KB
testcase_10 AC 56 ms
71,036 KB
testcase_11 AC 58 ms
73,184 KB
testcase_12 AC 54 ms
70,600 KB
testcase_13 AC 53 ms
69,516 KB
testcase_14 AC 76 ms
85,560 KB
testcase_15 AC 51 ms
67,996 KB
testcase_16 AC 65 ms
77,680 KB
testcase_17 AC 53 ms
68,776 KB
testcase_18 AC 57 ms
72,504 KB
testcase_19 AC 63 ms
76,452 KB
testcase_20 AC 65 ms
77,768 KB
testcase_21 AC 73 ms
82,780 KB
testcase_22 AC 57 ms
72,580 KB
testcase_23 AC 69 ms
82,280 KB
testcase_24 AC 58 ms
73,460 KB
testcase_25 AC 62 ms
75,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def inv(x):
    return pow(x, MOD-2, MOD)

def C(n, r):
    if r>n:
        return 0
    return fact[n]*inv(fact[r])*inv(fact[n-r])

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

A.append(-1)
fact = [1]

for i in range(1, 10**5+100):
    fact.append(fact[-1]*i%MOD)
    
ans = C(N, 3)
c = 1

for i in range(N):
    if A[i]!=A[i+1]:
        ans -= C(c, 3)
        ans -= C(c, 2)*(N-c)
        c = 1
    else:
        c += 1

print(ans%MOD)
0