QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#311632#5575. Knight's Tour Reduxushg8877#WA 0ms3856kbC++20258b2024-01-22 16:30:132024-01-22 16:30:13

Judging History

This is the latest submission verdict.

  • [2024-01-22 16:30:13]
  • Judged
  • Verdict: WA
  • Time: 0ms
  • Memory: 3856kb
  • [2024-01-22 16:30:13]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define MP make_pair
mt19937 rnd(time(0));
int main(){
	ios::sync_with_stdio(false);
	int n;cin>>n;
	if(n==1) cout<<"POSSIBLE"<<endl<<"1 1"<<endl;
	else cout<<"IMPOSSIBLE"<<endl;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3800kb

input:

1

output:

POSSIBLE
1 1

result:

ok answer = 1

Test #2:

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

input:

2

output:

IMPOSSIBLE

result:

ok answer = 0

Test #3:

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

input:

3

output:

IMPOSSIBLE

result:

ok answer = 0

Test #4:

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

input:

4

output:

IMPOSSIBLE

result:

ok answer = 0

Test #5:

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

input:

5

output:

IMPOSSIBLE

result:

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