QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#587764#9370. Gambling on Choosing RegionalsKevin5307WA 0ms3568kbC++20168b2024-09-24 21:31:192024-09-24 21:31:21

Judging History

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

  • [2024-09-24 21:31:21]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3568kb
  • [2024-09-24 21:31:19]
  • 提交

answer

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

詳細信息

Test #1:

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

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: ''