Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
60410 HeW3 J3 C++ 运行超时 20 1000 MS 25580 KB 384 2022-10-15 11:30:24

Tests(4/20):


#include<stdio.h> #include<set> using namespace std; int main(){ int n,ans=0; scanf("%d",&n); int* a=new int[n]{}; for(int i=0;i<n;++i) scanf("%d",a+i); for(int i=0;i<n;++i){ set<int> t; int total=0; for(int j=i;j<n;++j){ if(t.find(a[j])==t.end()){ t.insert(a[j]); total+=a[j]; } ans+=total; } } printf("%d",ans); delete[] a; }


测评信息: