QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#135393#5575. Knight's Tour Reduxhano#WA 1ms3636kbC++20237b2023-08-05 14:40:492023-08-05 14:40:53

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-08-05 14:40:53]
  • Judged
  • Verdict: WA
  • Time: 1ms
  • Memory: 3636kb
  • [2023-08-05 14:40:49]
  • Submitted

answer

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

int main(){
	ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
	
	int n;
	cin>>n;
	if(n == 1){
		cout<<"POSSIBLE\n1 1";
	}else{
		cout<<"IMPOSSIBLE\n";
	}
	
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3468kb

input:

1

output:

POSSIBLE
1 1

result:

ok answer = 1

Test #2:

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

input:

2

output:

IMPOSSIBLE

result:

ok answer = 0

Test #3:

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

input:

3

output:

IMPOSSIBLE

result:

ok answer = 0

Test #4:

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

input:

4

output:

IMPOSSIBLE

result:

ok answer = 0

Test #5:

score: -100
Wrong Answer
time: 0ms
memory: 3464kb

input:

5

output:

IMPOSSIBLE

result:

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