結果

問題 No.118 門松列(2)
ユーザー ああいいああいい
提出日時 2022-03-24 23:45:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-10-13 07:28:44
合計ジャッジ時間 3,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,032 KB
testcase_01 AC 63 ms
77,440 KB
testcase_02 AC 64 ms
77,056 KB
testcase_03 AC 63 ms
77,568 KB
testcase_04 AC 64 ms
77,440 KB
testcase_05 AC 68 ms
77,440 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 42 ms
51,584 KB
testcase_08 AC 44 ms
51,840 KB
testcase_09 AC 67 ms
75,520 KB
testcase_10 AC 52 ms
61,696 KB
testcase_11 AC 50 ms
63,360 KB
testcase_12 AC 50 ms
60,928 KB
testcase_13 AC 53 ms
59,776 KB
testcase_14 AC 68 ms
75,520 KB
testcase_15 AC 45 ms
58,496 KB
testcase_16 AC 60 ms
68,096 KB
testcase_17 AC 46 ms
59,648 KB
testcase_18 AC 54 ms
63,872 KB
testcase_19 AC 54 ms
66,688 KB
testcase_20 AC 54 ms
67,968 KB
testcase_21 AC 60 ms
73,216 KB
testcase_22 AC 49 ms
62,592 KB
testcase_23 AC 58 ms
71,680 KB
testcase_24 AC 50 ms
63,872 KB
testcase_25 AC 53 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
dat = [0] * 101
for a in A:
    dat[a] += 1
ans = 0
P = 10 ** 9 + 7
ans = N * (N - 1) * (N - 2) // 6 % P
for i in dat:
    ans -= i * (i-1) // 2 * (N - i)
    ans -= i * (i -1) * (i-2) // 6
    ans %= P
print(ans)
0