結果

問題 No.118 門松列(2)
ユーザー Konton7Konton7
提出日時 2019-05-20 00:29:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 437 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,820 KB
最終ジャッジ日時 2024-09-17 06:37:13
合計ジャッジ時間 3,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,880 KB
testcase_01 AC 129 ms
16,820 KB
testcase_02 AC 126 ms
16,384 KB
testcase_03 AC 125 ms
16,472 KB
testcase_04 AC 125 ms
16,668 KB
testcase_05 AC 124 ms
16,660 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 124 ms
16,340 KB
testcase_10 AC 90 ms
11,776 KB
testcase_11 AC 96 ms
12,288 KB
testcase_12 AC 86 ms
11,520 KB
testcase_13 AC 85 ms
11,392 KB
testcase_14 AC 122 ms
16,380 KB
testcase_15 AC 78 ms
10,752 KB
testcase_16 AC 103 ms
13,780 KB
testcase_17 AC 86 ms
11,136 KB
testcase_18 AC 93 ms
12,288 KB
testcase_19 AC 99 ms
13,472 KB
testcase_20 AC 104 ms
13,568 KB
testcase_21 AC 116 ms
15,344 KB
testcase_22 AC 88 ms
11,904 KB
testcase_23 AC 116 ms
14,944 KB
testcase_24 AC 95 ms
12,544 KB
testcase_25 AC 101 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
number = [ int(v) for v in input().split() ]
number_list = [ 0 for i in range(100) ]
number_list2 = []
for i in number:
    number_list[i-1] += 1

for i in number_list:
    if i != 0:
        number_list2.append(i)

n = len(number_list2)

s = 0

for i in range(n-2):
    for j in range(i+1,n-1):
        for k in range(j+1,n):
            s += (number_list2[i]*number_list2[j]*number_list2[k])
mod = 10**9+7
print(s%mod)
0