結果

問題 No.118 門松列(2)
ユーザー flippergoflippergo
提出日時 2024-11-26 07:58:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 304 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-11-26 07:58:57
合計ジャッジ時間 2,782 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,904 KB
testcase_01 AC 56 ms
81,280 KB
testcase_02 AC 58 ms
81,024 KB
testcase_03 AC 59 ms
81,280 KB
testcase_04 AC 57 ms
81,536 KB
testcase_05 AC 57 ms
81,536 KB
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 32 ms
51,968 KB
testcase_08 AC 32 ms
51,712 KB
testcase_09 AC 59 ms
79,488 KB
testcase_10 AC 43 ms
64,896 KB
testcase_11 AC 45 ms
66,560 KB
testcase_12 AC 42 ms
63,616 KB
testcase_13 AC 52 ms
62,592 KB
testcase_14 AC 54 ms
79,488 KB
testcase_15 AC 39 ms
61,056 KB
testcase_16 AC 48 ms
71,168 KB
testcase_17 AC 40 ms
62,336 KB
testcase_18 AC 43 ms
66,432 KB
testcase_19 AC 48 ms
69,632 KB
testcase_20 AC 46 ms
71,168 KB
testcase_21 AC 53 ms
77,312 KB
testcase_22 AC 44 ms
65,152 KB
testcase_23 AC 52 ms
75,008 KB
testcase_24 AC 43 ms
67,200 KB
testcase_25 AC 45 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
N = int(input())
A = list(map(int,input().split()))
C = {}
for i in range(N):
    C[A[i]] = C.get(A[i],0)+1
ans = 0
C = list(C.items())
K = len(C)
for i in range(K-2):
    for j in range(i+1,K-1):
        for k in range(j+1,K):
            ans = (ans+C[i][1]*C[j][1]*C[k][1])%MOD
print(ans)
0