QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#698926 | #7076. Browser Games | kiwi | WA | 1ms | 6000kb | C++20 | 503b | 2024-11-01 23:07:26 | 2024-11-01 23:07:27 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
struct node {
long long num;
string s;
long long res;
} web[50005];
bool cmp1(struct node x, struct node y) {
if (x.s < y.s) {
return true;
}
else {
return false;
}
}
bool cmp2(struct node x, struct node y) {
if (x.num < y.num) {
return true;
}
else {
return false;
}
}
int main()
{
// ios::sync_with_stdio(false);
// cin.tie(0);
// cout.tie(0);
cout << 1 << endl << 1 << endl << 1;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 6000kb
input:
3 ufoipv.ofu hsbocmvfgboubtz.kq hfotijo.njipzp.dpn/kb
output:
1 1 1
result:
wrong answer 2nd lines differ - expected: '2', found: '1'