結果

問題 No.118 門松列(2)
ユーザー HachimoriHachimori
提出日時 2015-01-06 23:33:37
言語 Python2
(2.7.18)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 12,112 KB
最終ジャッジ日時 2024-10-09 06:49:38
合計ジャッジ時間 2,812 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
6,816 KB
testcase_01 AC 79 ms
12,004 KB
testcase_02 AC 80 ms
11,820 KB
testcase_03 AC 79 ms
11,788 KB
testcase_04 AC 82 ms
12,112 KB
testcase_05 AC 81 ms
11,972 KB
testcase_06 AC 33 ms
6,820 KB
testcase_07 AC 34 ms
6,820 KB
testcase_08 AC 34 ms
6,820 KB
testcase_09 AC 77 ms
11,776 KB
testcase_10 AC 44 ms
7,552 KB
testcase_11 AC 47 ms
7,808 KB
testcase_12 AC 41 ms
7,168 KB
testcase_13 AC 38 ms
6,820 KB
testcase_14 AC 77 ms
11,560 KB
testcase_15 AC 35 ms
6,820 KB
testcase_16 AC 58 ms
9,464 KB
testcase_17 AC 38 ms
6,820 KB
testcase_18 AC 47 ms
7,808 KB
testcase_19 AC 55 ms
8,704 KB
testcase_20 AC 57 ms
9,088 KB
testcase_21 AC 71 ms
10,496 KB
testcase_22 AC 45 ms
7,552 KB
testcase_23 AC 66 ms
10,624 KB
testcase_24 AC 48 ms
8,064 KB
testcase_25 AC 54 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python


def read():
    raw_input()
    return map(int, raw_input().split())


def work(vList):
    v2cnt = [0 for i in range(101)]
    for v in vList:
        v2cnt[v] += 1

    ans = 0
    for i in range(101):
        for j in range(i + 1, 101):
            for k in range(j + 1, 101):
                ans = (ans + v2cnt[i] * v2cnt[j] * v2cnt[k]) % 1000000007
    
    print ans


if __name__ == "__main__":
    work(read())
0