結果

問題 No.118 門松列(2)
ユーザー TawaraTawara
提出日時 2015-10-13 17:41:35
言語 Python2
(2.7.18)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 12,256 KB
最終ジャッジ日時 2024-10-09 07:11:15
合計ジャッジ時間 2,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
6,528 KB
testcase_01 AC 79 ms
12,256 KB
testcase_02 AC 78 ms
11,940 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 80 ms
12,228 KB
testcase_05 AC 78 ms
12,224 KB
testcase_06 AC 27 ms
6,272 KB
testcase_07 AC 27 ms
6,400 KB
testcase_08 AC 26 ms
6,400 KB
testcase_09 AC 74 ms
11,772 KB
testcase_10 AC 36 ms
7,552 KB
testcase_11 AC 40 ms
7,936 KB
testcase_12 AC 33 ms
7,168 KB
testcase_13 AC 30 ms
6,816 KB
testcase_14 AC 73 ms
11,684 KB
testcase_15 AC 28 ms
6,528 KB
testcase_16 AC 54 ms
9,592 KB
testcase_17 AC 30 ms
6,912 KB
testcase_18 AC 40 ms
7,936 KB
testcase_19 AC 51 ms
8,960 KB
testcase_20 AC 51 ms
9,088 KB
testcase_21 AC 66 ms
10,752 KB
testcase_22 AC 38 ms
7,680 KB
testcase_23 AC 62 ms
10,496 KB
testcase_24 AC 42 ms
8,192 KB
testcase_25 AC 48 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations as comb
N = input()
A = map(int,raw_input().split())
V = [0]*(100)
for a in A:
	V[a-1] += 1
print sum(x*y*z for x,y,z in comb(V,3)) % (10**9+7)
0