結果

問題 No.118 門松列(2)
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-28 21:18:48
言語 Python2
(2.7.18)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 12,004 KB
最終ジャッジ日時 2024-10-09 06:56:27
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
6,272 KB
testcase_01 AC 110 ms
12,004 KB
testcase_02 AC 109 ms
11,692 KB
testcase_03 AC 110 ms
11,780 KB
testcase_04 AC 110 ms
11,856 KB
testcase_05 AC 110 ms
11,968 KB
testcase_06 AC 57 ms
6,016 KB
testcase_07 AC 56 ms
6,144 KB
testcase_08 AC 57 ms
6,144 KB
testcase_09 AC 104 ms
11,520 KB
testcase_10 AC 69 ms
7,296 KB
testcase_11 AC 73 ms
7,808 KB
testcase_12 AC 67 ms
7,040 KB
testcase_13 AC 63 ms
6,528 KB
testcase_14 AC 105 ms
11,436 KB
testcase_15 AC 60 ms
6,272 KB
testcase_16 AC 86 ms
9,336 KB
testcase_17 AC 64 ms
6,656 KB
testcase_18 AC 71 ms
7,808 KB
testcase_19 AC 81 ms
8,832 KB
testcase_20 AC 83 ms
8,960 KB
testcase_21 AC 98 ms
10,496 KB
testcase_22 AC 71 ms
7,552 KB
testcase_23 AC 94 ms
10,240 KB
testcase_24 AC 74 ms
7,936 KB
testcase_25 AC 81 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
a=map(int,raw_input().split())
cnt=[0 for i in range(101)]
for i in a:
    cnt[i]+=1
ans=0
for i in range(1,101):
    for j in range(i+1, 101):
        for k in range(j+1,101):
            ans+=cnt[i]*cnt[j]*cnt[k]
            ans%=1000000007
print ans
0