QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#125575 | #91. Secret Permutation | Qwerty1232 | 0 | 0ms | 0kb | C++20 | 205b | 2023-07-16 22:01:01 | 2023-07-16 22:01:04 |
Judging History
answer
#include <bits/stdc++.h>
#include "permutation.h"
std::mt19937 rnd;
void solve(int n) {
n = 7;
std::vector<int> vec(n);
std::shuffle(vec.begin(), vec.begin() + 4, rnd);
return;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Time Limit Exceeded
Test #1:
score: 0
Time Limit Exceeded
input:
7 5 7 1 3 2 4 6
output:
Unauthorized output
result:
Subtask #2:
score: 0
Skipped
Dependency #1:
0%
Subtask #3:
score: 0
Skipped
Dependency #1:
0%