結果

問題 No.118 門松列(2)
ユーザー ssmkzkssmkzk
提出日時 2018-11-12 15:35:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,536 KB
最終ジャッジ日時 2024-06-02 10:40:33
合計ジャッジ時間 3,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 126 ms
16,376 KB
testcase_02 AC 127 ms
16,500 KB
testcase_03 AC 126 ms
16,464 KB
testcase_04 AC 129 ms
16,536 KB
testcase_05 AC 130 ms
16,524 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 124 ms
16,084 KB
testcase_10 AC 80 ms
11,904 KB
testcase_11 AC 89 ms
12,032 KB
testcase_12 AC 79 ms
11,520 KB
testcase_13 AC 75 ms
11,136 KB
testcase_14 AC 117 ms
16,120 KB
testcase_15 AC 71 ms
10,624 KB
testcase_16 AC 98 ms
13,568 KB
testcase_17 AC 75 ms
11,008 KB
testcase_18 AC 89 ms
12,160 KB
testcase_19 AC 101 ms
13,472 KB
testcase_20 AC 100 ms
13,312 KB
testcase_21 AC 116 ms
15,340 KB
testcase_22 AC 82 ms
11,776 KB
testcase_23 AC 109 ms
14,684 KB
testcase_24 AC 90 ms
12,544 KB
testcase_25 AC 98 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = list(map(int, input().split()))
s = set(l)
l_count = []
l.sort()
old_l_i = 0
count = 0
ans = 0

for l_i in l:
    if old_l_i == l_i:
        count += 1
    else:
        l_count.append(count)
        count = 1
    old_l_i = l_i

l_count.append(count)
l_count = l_count[1:]


for i in range(len(l_count) - 2):
    for j in range(i + 1, len(l_count) -1):
        for k in range(j + 1, len(l_count)):
            ans += l_count[i] * l_count[j] * l_count[k]

print(ans % 1000000007)
0