QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#125592#91. Secret PermutationQwerty12320 2ms3508kbC++20229b2023-07-16 23:25:122023-07-16 23:25:15

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-16 23:25:15]
  • 评测
  • 测评结果:0
  • 用时:2ms
  • 内存:3508kb
  • [2023-07-16 23:25:12]
  • 提交

answer

#include <bits/stdc++.h>

#include "permutation.h"

std::mt19937 rnd(2086);

void solve(int n) {
	rnd.seed(20);
	n = 7;
    std::vector<int> vec(n);
    std::shuffle(vec.begin(), vec.begin() + 4, rnd);
    return;
}

详细

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 2ms
memory: 3508kb

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%