結果

問題 No.118 門松列(2)
ユーザー yansi819yansi819
提出日時 2024-05-25 16:05:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 278 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 82,348 KB
最終ジャッジ日時 2024-05-25 16:05:48
合計ジャッジ時間 3,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
62,036 KB
testcase_01 AC 62 ms
80,776 KB
testcase_02 AC 61 ms
81,196 KB
testcase_03 AC 61 ms
82,348 KB
testcase_04 AC 60 ms
82,024 KB
testcase_05 AC 63 ms
81,452 KB
testcase_06 AC 38 ms
53,696 KB
testcase_07 AC 42 ms
54,416 KB
testcase_08 AC 37 ms
53,700 KB
testcase_09 AC 58 ms
79,556 KB
testcase_10 AC 45 ms
64,780 KB
testcase_11 AC 47 ms
67,172 KB
testcase_12 AC 42 ms
63,732 KB
testcase_13 AC 43 ms
63,004 KB
testcase_14 AC 58 ms
79,680 KB
testcase_15 AC 43 ms
60,500 KB
testcase_16 AC 54 ms
72,028 KB
testcase_17 AC 45 ms
62,764 KB
testcase_18 AC 49 ms
66,116 KB
testcase_19 AC 52 ms
69,824 KB
testcase_20 AC 51 ms
71,092 KB
testcase_21 AC 58 ms
77,780 KB
testcase_22 AC 46 ms
65,480 KB
testcase_23 AC 57 ms
75,636 KB
testcase_24 AC 48 ms
66,960 KB
testcase_25 AC 50 ms
69,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
mod = 10 ** 9 + 7
N = int(input())
A = list(map(int, input().split()))
counter = Counter(A)
ans = N * (N - 1) * (N - 2) // 6
for v in counter.values():
    ans -= v * (v - 1) // 2 * (N - v) + v * (v - 1) * (v - 2) // 6
    ans %= mod
print(ans)

0