結果

問題 No.118 門松列(2)
ユーザー rlangevinrlangevin
提出日時 2023-01-08 18:16:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 264 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-05-09 09:52:56
合計ジャッジ時間 3,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
63,104 KB
testcase_01 AC 61 ms
80,512 KB
testcase_02 AC 61 ms
80,384 KB
testcase_03 AC 62 ms
80,896 KB
testcase_04 AC 61 ms
80,640 KB
testcase_05 AC 65 ms
80,128 KB
testcase_06 AC 43 ms
60,160 KB
testcase_07 AC 43 ms
60,160 KB
testcase_08 AC 44 ms
59,776 KB
testcase_09 AC 60 ms
78,720 KB
testcase_10 AC 48 ms
64,768 KB
testcase_11 AC 50 ms
66,304 KB
testcase_12 AC 47 ms
64,000 KB
testcase_13 AC 47 ms
62,756 KB
testcase_14 AC 59 ms
78,720 KB
testcase_15 AC 46 ms
61,440 KB
testcase_16 AC 54 ms
71,168 KB
testcase_17 AC 47 ms
62,976 KB
testcase_18 AC 50 ms
66,176 KB
testcase_19 AC 54 ms
69,632 KB
testcase_20 AC 54 ms
70,272 KB
testcase_21 AC 59 ms
76,672 KB
testcase_22 AC 49 ms
65,536 KB
testcase_23 AC 57 ms
74,368 KB
testcase_24 AC 50 ms
67,072 KB
testcase_25 AC 52 ms
69,632 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