Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
60348 lgh J3 C++ 通过 100 265 MS 39312 KB 484 2022-10-15 11:27:18

Tests(20/20):


#include <bits/stdc++.h> using namespace std; typedef long long ll; const ll maxn=500010,mod=1e9+7; ll a[maxn],n,ans,que[maxn]; bool Same; map<ll,ll>mp; int main() { // freopen("J3.in","r",stdin); // freopen("J3.out","w",stdout); scanf("%lld",&n); for(int i=1; i<=n; i++) scanf ("%lld",&a[i]); for(int i=1; i<=n; i++) que[i]=mp[a[i]],mp[a[i]]=i; ans=0; for(int i=1; i<=n; i++) (ans+=((i-que[i])*1ll*(n-i+1ll))%mod*a[i])%=mod; printf("%lld\n",ans); return 0; }


测评信息: