QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#125572 | #91. Secret Permutation | Qwerty1232 | 0 | 1ms | 3568kb | C++20 | 207b | 2023-07-16 22:00:07 | 2023-07-16 22:00:09 |
Judging History
answer
#include <bits/stdc++.h>
#include "permutation.h"
std::mt19937 rnd;
void solve(int n) {
n = 1;
std::vector<int> vec(n);
std::shuffle(vec.begin(), vec.begin() + 1, rnd);
return;
}
详细
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3568kb
input:
7 5 7 1 3 2 4 6
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found
Subtask #2:
score: 0
Skipped
Dependency #1:
0%
Subtask #3:
score: 0
Skipped
Dependency #1:
0%