結果

問題 No.118 門松列(2)
ユーザー rlangevinrlangevin
提出日時 2023-01-08 18:16:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 264 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 81,572 KB
最終ジャッジ日時 2024-12-15 21:47:45
合計ジャッジ時間 2,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
64,432 KB
testcase_01 AC 56 ms
81,124 KB
testcase_02 AC 55 ms
81,572 KB
testcase_03 AC 54 ms
81,404 KB
testcase_04 AC 55 ms
80,544 KB
testcase_05 AC 54 ms
80,960 KB
testcase_06 AC 37 ms
60,876 KB
testcase_07 AC 39 ms
61,844 KB
testcase_08 AC 38 ms
61,244 KB
testcase_09 AC 53 ms
79,004 KB
testcase_10 AC 43 ms
66,364 KB
testcase_11 AC 44 ms
68,296 KB
testcase_12 AC 41 ms
64,008 KB
testcase_13 AC 41 ms
63,828 KB
testcase_14 AC 54 ms
79,464 KB
testcase_15 AC 40 ms
62,144 KB
testcase_16 AC 48 ms
71,092 KB
testcase_17 AC 41 ms
62,956 KB
testcase_18 AC 43 ms
67,668 KB
testcase_19 AC 46 ms
70,876 KB
testcase_20 AC 46 ms
71,208 KB
testcase_21 AC 51 ms
77,000 KB
testcase_22 AC 44 ms
65,540 KB
testcase_23 AC 50 ms
76,112 KB
testcase_24 AC 44 ms
67,412 KB
testcase_25 AC 45 ms
69,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
D = [0] * 100
mod = 10 ** 9 + 7
for a in A:
    D[a - 1] += 1
ans = 0
for i in range(100):
    for j in range(i + 1, 100):
        for k in range(j + 1, 100):
            ans += D[i] * D[j] * D[k]
print(ans%mod)
0