QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#602689#7779. Swiss Stagexxcdsgyes#WA 0ms3696kbC++20429b2024-10-01 12:05:522024-10-01 12:05:53

Judging History

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

  • [2024-10-01 12:05:53]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3696kb
  • [2024-10-01 12:05:52]
  • 提交

answer

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

#define endl '\n'
#define IOS ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);
#define ll long long
#define debug(x) cout << #x << ' ' << x << endl;

const int inf = 1e9 + 10;
const ll INF = 1e18 + 10;

void test(){
	int x,y;cin >> x >> y;
	cout << 3 - x + y << '\n';
}

int main(){
	IOS
	int t = 1;//cin >> t;
	while(t--){
		test();
	}
}

詳細信息

Test #1:

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

input:

0 1

output:

4

result:

ok 1 number(s): "4"

Test #2:

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

input:

1 2

output:

4

result:

ok 1 number(s): "4"

Test #3:

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

input:

0 0

output:

3

result:

wrong answer 1st numbers differ - expected: '4', found: '3'