Task: | Omenat |
Sender: | |
Submission time: | 2015-12-20 15:37:29 +0200 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
test | verdict | time | score | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.16 s | 0 | details |
#2 | WRONG ANSWER | 0.06 s | 0 | details |
#3 | RUNTIME ERROR | 0.15 s | 0 | details |
#4 | WRONG ANSWER | 0.04 s | 0 | details |
#5 | RUNTIME ERROR | 0.15 s | 0 | details |
#6 | RUNTIME ERROR | 0.15 s | 0 | details |
#7 | WRONG ANSWER | 0.06 s | 0 | details |
#8 | WRONG ANSWER | 0.05 s | 0 | details |
#9 | RUNTIME ERROR | 0.14 s | 0 | details |
#10 | RUNTIME ERROR | 0.13 s | 0 | details |
Code
#include <iostream> #include <algorithm> #include <cassert> using namespace std; const int MN=101; typedef long long ll; typedef pair<int,int> P; P ps[MN]; int vs[MN]; const int MS = 100*1000; const int MS2 = MS/2; bool dp[MN][MS]; int main() { int n; cin>>n; for(int i=0; i<n; ++i) { int x; cin>>x; ps[i]=P(x,i); } sort(ps,ps+n); for(int i=0; i<n; ++i) vs[i]=ps[i].first; int sum=0; for(int i=0; i<n; ++i) sum+=vs[i]; assert(sum<MS2); }
Test details
Test 1
Verdict: RUNTIME ERROR
input |
---|
95 779724552 231968220 985023789 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Error:
code: input/code.cpp:31: int main(): Assertion `sum<MS2' failed.
Test 2
Verdict: WRONG ANSWER
input |
---|
85 229722261 51722691 862338862 8... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 3
Verdict: RUNTIME ERROR
input |
---|
97 398995377 989444445 634573915 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Error:
code: input/code.cpp:31: int main(): Assertion `sum<MS2' failed.
Test 4
Verdict: WRONG ANSWER
input |
---|
99 843687873 164010938 51269970 4... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 5
Verdict: RUNTIME ERROR
input |
---|
90 864611617 418460939 773297829 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Error:
code: input/code.cpp:31: int main(): Assertion `sum<MS2' failed.
Test 6
Verdict: RUNTIME ERROR
input |
---|
92 289890246 25801423 763027596 7... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Error:
code: input/code.cpp:31: int main(): Assertion `sum<MS2' failed.
Test 7
Verdict: WRONG ANSWER
input |
---|
89 879039800 50522278 850785072 4... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 8
Verdict: WRONG ANSWER
input |
---|
96 27192469 222283781 681532515 1... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 9
Verdict: RUNTIME ERROR
input |
---|
100 186459081 254674429 394007236 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Error:
code: input/code.cpp:31: int main(): Assertion `sum<MS2' failed.
Test 10
Verdict: RUNTIME ERROR
input |
---|
98 612168861 979831717 671087051 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Error:
code: input/code.cpp:31: int main(): Assertion `sum<MS2' failed.