結果

問題 No.118 門松列(2)
ユーザー H3PO4H3PO4
提出日時 2020-04-28 00:52:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 201 ms / 5,000 ms
コード長 259 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,552 KB
最終ジャッジ日時 2024-11-22 18:01:15
合計ジャッジ時間 5,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
10,752 KB
testcase_01 AC 172 ms
16,552 KB
testcase_02 AC 163 ms
16,092 KB
testcase_03 AC 167 ms
16,144 KB
testcase_04 AC 175 ms
16,540 KB
testcase_05 AC 169 ms
16,020 KB
testcase_06 AC 188 ms
10,624 KB
testcase_07 AC 184 ms
10,624 KB
testcase_08 AC 185 ms
10,624 KB
testcase_09 AC 164 ms
15,868 KB
testcase_10 AC 144 ms
11,904 KB
testcase_11 AC 142 ms
12,160 KB
testcase_12 AC 143 ms
11,648 KB
testcase_13 AC 139 ms
11,264 KB
testcase_14 AC 164 ms
15,728 KB
testcase_15 AC 137 ms
11,008 KB
testcase_16 AC 151 ms
13,696 KB
testcase_17 AC 137 ms
11,008 KB
testcase_18 AC 139 ms
12,160 KB
testcase_19 AC 142 ms
13,056 KB
testcase_20 AC 143 ms
13,308 KB
testcase_21 AC 157 ms
14,960 KB
testcase_22 AC 147 ms
11,904 KB
testcase_23 AC 160 ms
14,704 KB
testcase_24 AC 138 ms
12,416 KB
testcase_25 AC 146 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
from collections import Counter

N = int(input())
A = Counter(map(int, input().split()))
lA = len(A)

MOD = 10 ** 9 + 7
ans = 0
for t in itertools.combinations(range(1, 101), 3):
    ans = (ans + A[t[0]] * A[t[1]] * A[t[2]]) % MOD
print(ans)
0