結果

問題 No.118 門松列(2)
ユーザー gorugo30gorugo30
提出日時 2021-02-27 14:42:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 5,000 ms
コード長 292 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 80,860 KB
最終ジャッジ日時 2024-10-02 17:28:33
合計ジャッジ時間 2,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,276 KB
testcase_01 AC 69 ms
80,280 KB
testcase_02 AC 63 ms
80,356 KB
testcase_03 AC 65 ms
80,324 KB
testcase_04 AC 64 ms
80,860 KB
testcase_05 AC 64 ms
80,824 KB
testcase_06 AC 45 ms
60,444 KB
testcase_07 AC 45 ms
60,184 KB
testcase_08 AC 47 ms
60,192 KB
testcase_09 AC 63 ms
78,016 KB
testcase_10 AC 49 ms
64,540 KB
testcase_11 AC 53 ms
66,704 KB
testcase_12 AC 50 ms
63,444 KB
testcase_13 AC 49 ms
63,328 KB
testcase_14 AC 62 ms
77,848 KB
testcase_15 AC 46 ms
61,704 KB
testcase_16 AC 56 ms
71,016 KB
testcase_17 AC 48 ms
63,128 KB
testcase_18 AC 52 ms
67,924 KB
testcase_19 AC 55 ms
70,012 KB
testcase_20 AC 55 ms
69,956 KB
testcase_21 AC 61 ms
76,592 KB
testcase_22 AC 51 ms
65,400 KB
testcase_23 AC 58 ms
74,596 KB
testcase_24 AC 52 ms
68,124 KB
testcase_25 AC 54 ms
69,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

cnt = [0] * 101
N = int(input())
A = list(map(int, input().split()))
MOD = 10 ** 9 + 7
for i in range(N):
    cnt[A[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 = (ans + cnt[i] * cnt[j] * cnt[k]) % MOD
print(ans)
0