QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#717111#5111. Take On MementquanWA 0ms3560kbC++14324b2024-11-06 16:56:562024-11-06 16:56:57

Judging History

This is the latest submission verdict.

  • [2024-11-06 16:56:57]
  • Judged
  • Verdict: WA
  • Time: 0ms
  • Memory: 3560kb
  • [2024-11-06 16:56:56]
  • Submitted

answer

#include <bits/stdc++.h>
using namespace std;

#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;

int main() {
	cin.tie(0)->sync_with_stdio(0);
	cin.exceptions(cin.failbit);
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

5
4 2 3 4 5
0 2 -2
0 1 3
0 4 -6
0 -18 5

output:


result:

wrong answer 1st lines differ - expected: '725', found: ''