QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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;
}
詳細信息
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'