QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#698926#7076. Browser GameskiwiWA 1ms6000kbC++20503b2024-11-01 23:07:262024-11-01 23:07:27

Judging History

你现在查看的是最新测评结果

  • [2024-11-01 23:07:27]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:6000kb
  • [2024-11-01 23:07:26]
  • 提交

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'