結果

問題 No.118 門松列(2)
ユーザー もちふわゆるゆるもちふわゆるゆる
提出日時 2023-09-10 01:32:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 533 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-06-27 17:39:48
合計ジャッジ時間 2,731 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,264 KB
testcase_01 AC 78 ms
84,992 KB
testcase_02 AC 76 ms
84,352 KB
testcase_03 AC 79 ms
84,480 KB
testcase_04 AC 78 ms
84,736 KB
testcase_05 AC 81 ms
84,608 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 76 ms
82,560 KB
testcase_10 AC 52 ms
63,104 KB
testcase_11 AC 54 ms
65,280 KB
testcase_12 AC 50 ms
61,568 KB
testcase_13 AC 48 ms
60,288 KB
testcase_14 AC 77 ms
82,304 KB
testcase_15 AC 44 ms
58,752 KB
testcase_16 AC 62 ms
71,296 KB
testcase_17 AC 47 ms
59,776 KB
testcase_18 AC 53 ms
65,024 KB
testcase_19 AC 60 ms
69,888 KB
testcase_20 AC 61 ms
70,912 KB
testcase_21 AC 70 ms
78,464 KB
testcase_22 AC 51 ms
63,616 KB
testcase_23 AC 69 ms
76,032 KB
testcase_24 AC 55 ms
66,048 KB
testcase_25 AC 60 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
input = lambda: sys.stdin.readline()[:-1]
def MI(): return map(int, input().split())
inf = 10**18
mod = 10**9+7

from itertools import *
def lcom(s):
    grouped = groupby(s)
    res = []
    for k, v in grouped:
        res.append((k, int(len(list(v)))))
    return res

n = int(input())
a = sorted(MI())
b = lcom(a)

b1, b3 = 0, 0
for _, i in b:
    b3 += i
b3 -= b[0][1]

ans = 0
for b2 in range(1, len(b)):
    b1 += b[b2-1][1]
    b3 -= b[b2][1]
    ans += b[b2][1] * b1 * b3 % mod
    ans %= mod
print(ans%mod)
0