結果

問題 No.118 門松列(2)
ユーザー c-yanc-yan
提出日時 2021-04-01 23:36:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 317 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,836 KB
最終ジャッジ日時 2024-06-01 04:35:50
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 144 ms
16,836 KB
testcase_02 AC 138 ms
16,376 KB
testcase_03 AC 139 ms
16,612 KB
testcase_04 AC 143 ms
16,556 KB
testcase_05 AC 138 ms
16,680 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 137 ms
16,088 KB
testcase_10 AC 113 ms
11,776 KB
testcase_11 AC 117 ms
12,284 KB
testcase_12 AC 110 ms
11,520 KB
testcase_13 AC 111 ms
11,264 KB
testcase_14 AC 134 ms
16,128 KB
testcase_15 AC 103 ms
10,880 KB
testcase_16 AC 123 ms
13,952 KB
testcase_17 AC 107 ms
11,136 KB
testcase_18 AC 116 ms
12,288 KB
testcase_19 AC 117 ms
13,312 KB
testcase_20 AC 120 ms
13,312 KB
testcase_21 AC 128 ms
15,324 KB
testcase_22 AC 111 ms
12,160 KB
testcase_23 AC 126 ms
14,868 KB
testcase_24 AC 116 ms
12,416 KB
testcase_25 AC 120 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

m = 1000000007

N, *A = map(int, open(0).read().split())

d = list(Counter(A).values())
result = 0
for i in range(len(d) - 2):
    for j in range(i + 1, len(d) - 1):
        for k in range(j + 1, len(d)):
            result += d[i] * d[j] * d[k]
            result %= m
print(result)
0