# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
15295 | 2015-07-12T05:28:28 Z | sujin | 달리는 게임 (kriii3_E) | C++ | 1 ms | 12840 KB |
#include <cstdio> #define N 1000001 int n,a[N],t[100][100]; long long s[N],q,mx; int main () { int i,j; long long as; scanf ("%d",&n); for (i=1;i<=n;i++) scanf ("%d",a+i),s[i]=s[i-1]+a[i]; for (i=1;i<=n;i++) for (q=0,j=i;j>=1;j--) { q+=s[i]-s[j-1]; if (mx<q) mx=q; } printf ("%lld\n",mx); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 12840 KB | Output is correct |
2 | Incorrect | 1 ms | 12840 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Halted | 0 ms | 0 KB | - |