結果

問題 No.118 門松列(2)
ユーザー brthyyjpbrthyyjp
提出日時 2021-05-29 20:35:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 236 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-11-08 02:51:54
合計ジャッジ時間 3,110 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,040 KB
testcase_01 AC 87 ms
88,576 KB
testcase_02 AC 85 ms
88,576 KB
testcase_03 AC 86 ms
88,704 KB
testcase_04 AC 85 ms
88,448 KB
testcase_05 AC 86 ms
88,448 KB
testcase_06 AC 60 ms
67,456 KB
testcase_07 AC 60 ms
67,456 KB
testcase_08 AC 60 ms
67,456 KB
testcase_09 AC 83 ms
86,912 KB
testcase_10 AC 67 ms
72,960 KB
testcase_11 AC 68 ms
74,624 KB
testcase_12 AC 67 ms
71,808 KB
testcase_13 AC 65 ms
70,912 KB
testcase_14 AC 83 ms
87,040 KB
testcase_15 AC 63 ms
69,504 KB
testcase_16 AC 71 ms
78,592 KB
testcase_17 AC 65 ms
70,784 KB
testcase_18 AC 68 ms
74,368 KB
testcase_19 AC 71 ms
77,440 KB
testcase_20 AC 73 ms
78,336 KB
testcase_21 AC 82 ms
85,376 KB
testcase_22 AC 67 ms
73,344 KB
testcase_23 AC 77 ms
82,688 KB
testcase_24 AC 69 ms
75,264 KB
testcase_25 AC 71 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

mod = 10**9+7
A = list(map(int, input().split()))
C = [0]*101
for i, a in enumerate(A):
    C[a] += 1
ans = 0
import itertools
for c in itertools.combinations(C, 3):
    ans += c[0]*c[1]*c[2]
    ans %= mod
print(ans)
0