結果

問題 No.118 門松列(2)
ユーザー ssmkzkssmkzk
提出日時 2018-11-12 15:35:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,664 KB
最終ジャッジ日時 2024-12-23 07:23:40
合計ジャッジ時間 3,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 137 ms
16,628 KB
testcase_02 AC 121 ms
16,372 KB
testcase_03 AC 127 ms
16,592 KB
testcase_04 AC 130 ms
16,664 KB
testcase_05 AC 130 ms
16,648 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 128 ms
16,208 KB
testcase_10 AC 86 ms
11,776 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 AC 78 ms
11,392 KB
testcase_13 AC 75 ms
11,136 KB
testcase_14 AC 126 ms
16,120 KB
testcase_15 AC 73 ms
10,624 KB
testcase_16 AC 98 ms
13,568 KB
testcase_17 AC 75 ms
11,136 KB
testcase_18 AC 86 ms
12,288 KB
testcase_19 AC 99 ms
13,344 KB
testcase_20 AC 100 ms
13,440 KB
testcase_21 AC 112 ms
15,340 KB
testcase_22 AC 80 ms
11,776 KB
testcase_23 AC 112 ms
14,900 KB
testcase_24 AC 90 ms
12,288 KB
testcase_25 AC 95 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