結果

問題 No.118 門松列(2)
ユーザー Meso MesoMeso Meso
提出日時 2024-09-29 19:16:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 300 ms / 5,000 ms
コード長 309 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,108 KB
最終ジャッジ日時 2024-09-29 19:16:17
合計ジャッジ時間 6,013 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 292 ms
17,108 KB
testcase_02 AC 289 ms
16,492 KB
testcase_03 AC 290 ms
16,580 KB
testcase_04 AC 290 ms
16,960 KB
testcase_05 AC 294 ms
16,644 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 300 ms
16,452 KB
testcase_10 AC 141 ms
11,904 KB
testcase_11 AC 152 ms
12,416 KB
testcase_12 AC 130 ms
11,520 KB
testcase_13 AC 119 ms
11,136 KB
testcase_14 AC 279 ms
16,476 KB
testcase_15 AC 107 ms
10,752 KB
testcase_16 AC 232 ms
14,080 KB
testcase_17 AC 117 ms
11,136 KB
testcase_18 AC 152 ms
12,288 KB
testcase_19 AC 189 ms
13,312 KB
testcase_20 AC 197 ms
13,440 KB
testcase_21 AC 245 ms
15,332 KB
testcase_22 AC 143 ms
12,032 KB
testcase_23 AC 258 ms
15,100 KB
testcase_24 AC 163 ms
12,544 KB
testcase_25 AC 187 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())
a = list(map(int, input().split()))
a.sort()
d = [0 for _ in range(max(a)+1)]
     
set_a = set(a)

mod = 10 ** 9 + 7

for i in set_a:
    d[i] = a.count(i)

ans = 0

for c in itertools.combinations(set_a, 3):
     ans += (d[c[0]] * d[c[1]] * d[c[2]]) % mod

print(ans%mod)
0