QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#261232 | #7796. Axis-Aligned Area | FHQY_WWW# | AC ✓ | 0ms | 3696kb | C++20 | 1.2kb | 2023-11-22 19:18:59 | 2023-11-22 19:18:59 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define double long double
#define lowbit(x) x&(-x)
#define fastios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define endl '\n'
#define el puts("")
#define udm unordered_map<int,int>
#define set_0(a) memset(&a,0,sizeof(a))
#define set_unint(a) memset(&a,-1,sizeof(a))
using namespace std;
//define_var
const int M=2e5+9,inf=1e18;
//define_var
//function_begin
int read()
{
int x=0,f=1;
char c=getchar();
while(c<'0'||c>'9'){if(c=='-') f=-1;c=getchar();}
while(c>='0'&&c<='9') x=x*10+c-'0',c=getchar();
return x*f;
}
void write(int x)
{
if(x<0) putchar('-'),x=-x;
if(x>9) write(x/10);
putchar(x%10+'0');
}
//function_end
//solve_begin
void solve()
{
int a[4];
for(int i=0;i<4;i++)
cin>>a[i];
int res=-1e18;
for(int i=0;i<4;i++)
{
for(int j=0;j<4;j++)
{
if(i==j) continue;
for(int s=0;s<4;s++)
{
if(i==s||j==s) continue;
for(int t=0;t<4;t++)
{
if(i==t||j==t||s==t) continue;
int ans=min(a[i],a[j])*min(a[s],a[t]);
res=max(res,ans);
}
}
}
}
cout<<res<<endl;
}
//solve_end
//main_begin
signed main()
{
fastios
int T=1;
// cin>>T;
while(T--)
solve();
}
//main_end
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3580kb
input:
2 2 4 7
output:
8
result:
ok 1 number(s): "8"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
10 10 10 10
output:
100
result:
ok 1 number(s): "100"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3516kb
input:
1 1 1 1
output:
1
result:
ok 1 number(s): "1"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
1 1 2 2
output:
2
result:
ok 1 number(s): "2"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
4 5 5 5
output:
20
result:
ok 1 number(s): "20"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
7 10 12 12
output:
84
result:
ok 1 number(s): "84"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3584kb
input:
13 22 32 34
output:
416
result:
ok 1 number(s): "416"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
9 41 75 93
output:
675
result:
ok 1 number(s): "675"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3584kb
input:
31 59 97 98
output:
3007
result:
ok 1 number(s): "3007"
Test #10:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
16 33 48 52
output:
768
result:
ok 1 number(s): "768"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3588kb
input:
14 49 52 73
output:
728
result:
ok 1 number(s): "728"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
50 88 90 94
output:
4500
result:
ok 1 number(s): "4500"
Test #13:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
65 85 94 98
output:
6110
result:
ok 1 number(s): "6110"
Test #14:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
86 86 89 95
output:
7654
result:
ok 1 number(s): "7654"
Test #15:
score: 0
Accepted
time: 0ms
memory: 3584kb
input:
95 97 97 100
output:
9215
result:
ok 1 number(s): "9215"
Test #16:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
98 99 99 99
output:
9702
result:
ok 1 number(s): "9702"
Test #17:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
99 100 100 100
output:
9900
result:
ok 1 number(s): "9900"
Test #18:
score: 0
Accepted
time: 0ms
memory: 3580kb
input:
100 100 100 100
output:
10000
result:
ok 1 number(s): "10000"
Test #19:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
99 99 99 100
output:
9801
result:
ok 1 number(s): "9801"
Test #20:
score: 0
Accepted
time: 0ms
memory: 3696kb
input:
99 99 100 100
output:
9900
result:
ok 1 number(s): "9900"
Test #21:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
1 100 100 100
output:
100
result:
ok 1 number(s): "100"
Test #22:
score: 0
Accepted
time: 0ms
memory: 3508kb
input:
1 1 100 100
output:
100
result:
ok 1 number(s): "100"
Test #23:
score: 0
Accepted
time: 0ms
memory: 3540kb
input:
1 1 1 100
output:
1
result:
ok 1 number(s): "1"
Test #24:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
2 100 100 100
output:
200
result:
ok 1 number(s): "200"
Test #25:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
2 2 100 100
output:
200
result:
ok 1 number(s): "200"
Test #26:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
2 2 2 100
output:
4
result:
ok 1 number(s): "4"
Test #27:
score: 0
Accepted
time: 0ms
memory: 3576kb
input:
15 16 23 42
output:
345
result:
ok 1 number(s): "345"
Test #28:
score: 0
Accepted
time: 0ms
memory: 3572kb
input:
91 93 95 97
output:
8645
result:
ok 1 number(s): "8645"
Test #29:
score: 0
Accepted
time: 0ms
memory: 3536kb
input:
9 13 82 86
output:
738
result:
ok 1 number(s): "738"
Test #30:
score: 0
Accepted
time: 0ms
memory: 3524kb
input:
9 73 82 86
output:
738
result:
ok 1 number(s): "738"
Test #31:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
9 13 22 86
output:
198
result:
ok 1 number(s): "198"
Test #32:
score: 0
Accepted
time: 0ms
memory: 3588kb
input:
2 3 5 100
output:
10
result:
ok 1 number(s): "10"
Test #33:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
5 5 5 100
output:
25
result:
ok 1 number(s): "25"
Extra Test:
score: 0
Extra Test Passed