結果

問題 No.118 門松列(2)
ユーザー colognecologne
提出日時 2022-02-03 02:01:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-06-11 09:40:58
合計ジャッジ時間 2,823 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
59,520 KB
testcase_01 AC 70 ms
83,328 KB
testcase_02 AC 66 ms
83,328 KB
testcase_03 AC 67 ms
83,328 KB
testcase_04 AC 66 ms
83,328 KB
testcase_05 AC 67 ms
83,584 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 48 ms
58,880 KB
testcase_09 AC 74 ms
81,280 KB
testcase_10 AC 50 ms
65,408 KB
testcase_11 AC 50 ms
66,944 KB
testcase_12 AC 48 ms
63,232 KB
testcase_13 AC 55 ms
62,592 KB
testcase_14 AC 72 ms
81,280 KB
testcase_15 AC 45 ms
60,544 KB
testcase_16 AC 55 ms
71,936 KB
testcase_17 AC 45 ms
62,208 KB
testcase_18 AC 53 ms
66,944 KB
testcase_19 AC 57 ms
70,784 KB
testcase_20 AC 56 ms
71,424 KB
testcase_21 AC 64 ms
78,208 KB
testcase_22 AC 55 ms
65,408 KB
testcase_23 AC 60 ms
76,928 KB
testcase_24 AC 50 ms
67,456 KB
testcase_25 AC 53 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    int(input())  # N
    *A, = map(int, input().split())
    cnt = [0]*(max(A)+1)
    for i in A:
        cnt[i] += 1

    ans = 0
    for i in range(len(cnt)):
        for j in range(i):
            for k in range(j):
                ans += cnt[i]*cnt[j]*cnt[k]

    print(ans % (10**9+7))


if __name__ == '__main__':
    main()
0