結果

問題 No.118 門松列(2)
ユーザー titiatitia
提出日時 2022-02-13 02:23:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 274 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,516 KB
最終ジャッジ日時 2024-06-29 05:19:55
合計ジャッジ時間 4,521 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 156 ms
16,496 KB
testcase_02 AC 153 ms
16,368 KB
testcase_03 AC 152 ms
16,328 KB
testcase_04 AC 157 ms
16,408 KB
testcase_05 AC 152 ms
16,516 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 154 ms
16,092 KB
testcase_10 AC 129 ms
11,648 KB
testcase_11 AC 132 ms
12,032 KB
testcase_12 AC 125 ms
11,264 KB
testcase_13 AC 121 ms
11,008 KB
testcase_14 AC 150 ms
16,112 KB
testcase_15 AC 119 ms
10,496 KB
testcase_16 AC 136 ms
13,636 KB
testcase_17 AC 121 ms
10,880 KB
testcase_18 AC 127 ms
11,904 KB
testcase_19 AC 131 ms
13,056 KB
testcase_20 AC 136 ms
13,312 KB
testcase_21 AC 144 ms
15,076 KB
testcase_22 AC 124 ms
11,776 KB
testcase_23 AC 142 ms
14,804 KB
testcase_24 AC 131 ms
12,288 KB
testcase_25 AC 131 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
from collections import Counter

C=Counter(A)

L=list(C.keys())

ANS=0

for i in range(len(L)):
    for j in range(i+1,len(L)):
        for k in range(j+1,len(L)):
            ANS+=C[L[i]]*C[L[j]]*C[L[k]]

print(ANS%(10**9+7))
0