QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#253849 | #7796. Axis-Aligned Area | none# | WA | 0ms | 3544kb | C++14 | 373b | 2023-11-17 17:25:27 | 2023-11-17 17:25:28 |
Judging History
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;
}
詳細信息
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'