QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#603692#7860. Graph of Maximum Degree 3xyhhhhhWA 0ms3528kbC++14160b2024-10-01 18:20:522024-10-01 18:20:53

Judging History

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

  • [2024-10-01 18:20:53]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3528kb
  • [2024-10-01 18:20:52]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

using i32 = int32_t;


i32 main() {
    ios::sync_with_stdio(false), cin.tie(nullptr);
    return 0;
}

详细

Test #1:

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

input:

3 4
1 2 0
1 3 1
2 3 0
2 3 1

output:


result:

wrong answer Answer contains longer sequence [length = 1], but output contains 0 elements