QOJ.ac

QOJ

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

Judging History

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

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

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 << 5 - x + y << '\n';
}

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

詳細信息

Test #1:

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

input:

0 1

output:

6

result:

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