結果

問題 No.118 門松列(2)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-03-16 00:27:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 362 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,860 KB
最終ジャッジ日時 2024-09-22 17:02:20
合計ジャッジ時間 4,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 171 ms
16,860 KB
testcase_02 AC 168 ms
16,392 KB
testcase_03 AC 166 ms
16,588 KB
testcase_04 AC 170 ms
16,652 KB
testcase_05 AC 167 ms
16,640 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 166 ms
16,200 KB
testcase_10 AC 134 ms
11,904 KB
testcase_11 AC 140 ms
12,160 KB
testcase_12 AC 135 ms
11,520 KB
testcase_13 AC 130 ms
11,136 KB
testcase_14 AC 173 ms
16,372 KB
testcase_15 AC 131 ms
10,752 KB
testcase_16 AC 152 ms
13,824 KB
testcase_17 AC 133 ms
11,136 KB
testcase_18 AC 138 ms
12,288 KB
testcase_19 AC 150 ms
13,184 KB
testcase_20 AC 144 ms
13,312 KB
testcase_21 AC 161 ms
15,208 KB
testcase_22 AC 137 ms
11,904 KB
testcase_23 AC 157 ms
14,972 KB
testcase_24 AC 140 ms
12,416 KB
testcase_25 AC 147 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as df
n=int(input())
ns=list(map(int,input().split()))
dic=df(int)
sns=list(set(ns))
mod=10**9+7
for i in ns:
    dic[i] += 1
ans=0

for i in range(len(sns)-2):
    for j in range(i+1,len(sns)-1):
        for k in range(j+1,len(sns)):
            ans+=dic[sns[i]]*dic[sns[j]]*dic[sns[k]]
            ans%=mod
    
print(ans)

0