QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#253849#7796. Axis-Aligned Areanone#WA 0ms3544kbC++14373b2023-11-17 17:25:272023-11-17 17:25:28

Judging History

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

  • [2023-11-17 17:25:28]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3544kb
  • [2023-11-17 17:25:27]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int maxn=2e5+6;
#define ll long long
#define il long long

void solve()
{
	ll a1,a2,a3,a4;
	cin>>a1>>a2>>a3>>a4;
	cout<<a2*a4<<endl;
	
}
int  main(){
	ios::sync_with_stdio(false);	
	int t=1;
	//cin>>t;
	//ll res=1;
	//for(int i=1;i<=13;i++)res*=i;
	//cout<<res<<'\n';
	while(t--)solve();
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
2
4
7

output:

14

result:

wrong answer 1st numbers differ - expected: '8', found: '14'