QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#587743#9370. Gambling on Choosing RegionalsKevin5307WA 0ms3548kbC++20169b2024-09-24 21:23:322024-09-24 21:23:33

Judging History

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

  • [2024-09-24 21:23:33]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3548kb
  • [2024-09-24 21:23:32]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int main()
{
	mt19937 rng(114514);
	vector<int> vec={1,1,4,5,1,4};
	shuffle(vec.begin(),vec.end(),rng);
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3548kb

input:

5 3
1 2 3
100 THU
110 PKU
95 PKU
105 THU
115 PKU

output:


result:

wrong answer 1st lines differ - expected: '2', found: ''