結果

問題 No.118 門松列(2)
ユーザー masumasumath1masumasumath1
提出日時 2020-01-03 20:45:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 313 ms / 5,000 ms
コード長 302 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,688 KB
最終ジャッジ日時 2024-11-22 19:26:06
合計ジャッジ時間 6,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 313 ms
16,688 KB
testcase_02 AC 298 ms
16,372 KB
testcase_03 AC 297 ms
16,464 KB
testcase_04 AC 300 ms
16,536 KB
testcase_05 AC 298 ms
16,648 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 290 ms
16,332 KB
testcase_10 AC 144 ms
11,776 KB
testcase_11 AC 160 ms
12,160 KB
testcase_12 AC 132 ms
11,392 KB
testcase_13 AC 122 ms
11,008 KB
testcase_14 AC 291 ms
15,988 KB
testcase_15 AC 108 ms
10,624 KB
testcase_16 AC 206 ms
13,936 KB
testcase_17 AC 121 ms
11,264 KB
testcase_18 AC 155 ms
12,288 KB
testcase_19 AC 192 ms
13,440 KB
testcase_20 AC 202 ms
13,568 KB
testcase_21 AC 252 ms
15,212 KB
testcase_22 AC 151 ms
11,904 KB
testcase_23 AC 238 ms
14,804 KB
testcase_24 AC 162 ms
12,544 KB
testcase_25 AC 186 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
mod = 10**9 + 7
N = int(input())
A = list(map(int,input().split()))
A.sort()
listA = [0 for _ in range(max(A)+1)]
setA = set(A)
for  a in setA:
    listA[a] = A.count(a)
ans = 0
for c in itertools.combinations(setA, 3):
    ans += listA[c[0]]*listA[c[1]]*listA[c[2]]%mod
print(ans%mod)
0