結果

問題 No.118 門松列(2)
ユーザー nebukuro09nebukuro09
提出日時 2016-10-29 12:15:51
言語 Python2
(2.7.18)
結果
AC  
実行時間 188 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 12,580 KB
最終ジャッジ日時 2024-11-24 17:45:42
合計ジャッジ時間 5,310 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
6,912 KB
testcase_01 AC 185 ms
12,580 KB
testcase_02 AC 188 ms
12,264 KB
testcase_03 AC 185 ms
12,360 KB
testcase_04 AC 188 ms
12,428 KB
testcase_05 AC 185 ms
12,544 KB
testcase_06 AC 13 ms
6,820 KB
testcase_07 AC 13 ms
6,912 KB
testcase_08 AC 14 ms
6,820 KB
testcase_09 AC 185 ms
12,228 KB
testcase_10 AC 137 ms
8,192 KB
testcase_11 AC 141 ms
8,320 KB
testcase_12 AC 133 ms
7,424 KB
testcase_13 AC 128 ms
7,296 KB
testcase_14 AC 183 ms
12,140 KB
testcase_15 AC 124 ms
6,912 KB
testcase_16 AC 152 ms
9,984 KB
testcase_17 AC 127 ms
7,040 KB
testcase_18 AC 138 ms
8,448 KB
testcase_19 AC 149 ms
9,472 KB
testcase_20 AC 154 ms
9,600 KB
testcase_21 AC 175 ms
11,232 KB
testcase_22 AC 139 ms
8,064 KB
testcase_23 AC 165 ms
10,880 KB
testcase_24 AC 143 ms
8,576 KB
testcase_25 AC 152 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = input()
A = map(int, raw_input().split())
C = Counter(A)
M = len(C.keys())
K = C.keys()
MOD = 10**9+7

ans = 0
for i in xrange(M):
    for j in xrange(i+1, M):
        for k in xrange(j+1, M):
            ans = (ans + C[K[i]]*C[K[j]]*C[K[k]]) % MOD
print ans
0