# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
400884 | DavidDamian | Pod starim krovovima (COCI20_psk) | C++11 | 2 ms | 208 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
struct vaso
{
int vol;
int agua;
int id;
};
bool porVolumen(vaso A, vaso B)
{
if (A.vol < B.vol) return true;
else {
if (A.vol == B.vol) {
if (A.agua < B.agua) return true;
else return false;
}
else return false;
}
}
bool porId(vaso A, vaso B)
{
return A.id < B.id;
}
vaso A[100005];
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |