# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1167247 | chikien2009 | Exhibition (JOI19_ho_t2) | C++20 | 122 ms | 1556 KiB |
#include <bits/stdc++.h>
using namespace std;
inline void setup()
{
#ifndef ONLINE_JUDGE
freopen("test.inp", "r", stdin);
freopen("test.out", "w", stdout);
#endif
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
}
int n, m,c[100000], res = 0;
pair<int, int> p[100000];
inline bool comp(const pair<int, int> & ina, const pair<int, int> & inb)
{
return (ina.second != inb.second ? ina.second > inb.second : ina.first > inb.first);
}
int main()
{
// setup();
cin >> n >> m;
for (int i = 0; i < n; ++i)
{
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |