QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#125569#91. Secret PermutationQwerty12320 1ms3512kbC++20195b2023-07-16 21:51:072023-07-16 21:51:11

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 21:51:11]
  • 评测
  • 测评结果:0
  • 用时:1ms
  • 内存:3512kb
  • [2023-07-16 21:51:07]
  • 提交

answer

#include <bits/stdc++.h>

#include "permutation.h"

std::mt19937 rnd;

void solve(int n) {
    std::vector<int> vec(n);
    // std::shuffle(vec.begin(), vec.end(), rnd);
    return;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3512kb

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%