QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#603697#7860. Graph of Maximum Degree 3PHarrWA 0ms3564kbC++20160b2024-10-01 18:22:142024-10-01 18:22:14

Judging History

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

  • [2024-10-01 18:22:14]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3564kb
  • [2024-10-01 18:22:14]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

using i32 = int32_t;


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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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