QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#83230#5575. Knight's Tour ReduxXKErrorWA 2ms3584kbC++194b2023-03-01 08:33:452023-03-01 08:33:48

Judging History

This is the latest submission verdict.

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-03-01 08:33:48]
  • Judged
  • Verdict: WA
  • Time: 2ms
  • Memory: 3584kb
  • [2023-03-01 08:33:45]
  • Submitted

answer

#include <bits/stdc++.h>

#define maxn 100005

using namespace std;

int main() {
	int n;
	scanf("%d", &n);
	if (n == 1) puts("POSSIBLE\n1 1");
	else puts("IMPOSSIBLE");
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3584kb

input:

1

output:

POSSIBLE
1 1

result:

ok answer = 1

Test #2:

score: 0
Accepted
time: 1ms
memory: 3384kb

input:

2

output:

IMPOSSIBLE

result:

ok answer = 0

Test #3:

score: 0
Accepted
time: 0ms
memory: 3424kb

input:

3

output:

IMPOSSIBLE

result:

ok answer = 0

Test #4:

score: 0
Accepted
time: 2ms
memory: 3424kb

input:

4

output:

IMPOSSIBLE

result:

ok answer = 0

Test #5:

score: -100
Wrong Answer
time: 2ms
memory: 3420kb

input:

5

output:

IMPOSSIBLE

result:

wrong answer jury has the better answer: jans = 1, pans = 0 (1 is Possible)