結果

問題 No.118 門松列(2)
ユーザー takakintakakin
提出日時 2020-05-22 00:21:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 226 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,676 KB
最終ジャッジ日時 2024-10-02 10:55:30
合計ジャッジ時間 4,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 163 ms
16,676 KB
testcase_02 AC 160 ms
16,492 KB
testcase_03 AC 159 ms
16,456 KB
testcase_04 AC 160 ms
16,524 KB
testcase_05 AC 162 ms
16,516 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 161 ms
16,328 KB
testcase_10 AC 128 ms
11,904 KB
testcase_11 AC 131 ms
12,288 KB
testcase_12 AC 124 ms
11,520 KB
testcase_13 AC 122 ms
11,136 KB
testcase_14 AC 153 ms
16,240 KB
testcase_15 AC 119 ms
10,752 KB
testcase_16 AC 140 ms
13,888 KB
testcase_17 AC 126 ms
11,136 KB
testcase_18 AC 146 ms
12,288 KB
testcase_19 AC 132 ms
13,184 KB
testcase_20 AC 136 ms
13,440 KB
testcase_21 AC 158 ms
15,192 KB
testcase_22 AC 129 ms
11,904 KB
testcase_23 AC 144 ms
14,924 KB
testcase_24 AC 131 ms
12,672 KB
testcase_25 AC 137 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=[int(i) for i in input().split()]
mod=10**9+7
import collections
C=collections.Counter(A)
ans=0
import itertools
for c1,c2,c3 in itertools.combinations(C.keys(),3):
  ans=(ans+C[c1]*C[c2]*C[c3])%mod
print(ans)
0