QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#279668 | #7796. Axis-Aligned Area | bachbeo2007 | AC ✓ | 0ms | 3800kb | C++23 | 1.9kb | 2023-12-08 23:01:02 | 2023-12-08 23:01:02 |
Judging History
answer
// Judges with GCC >= 12 only needs Ofast
// #pragma GCC optimize("O3,no-stack-protector,fast-math,unroll-loops,tree-vectorize")
// MLE optimization
// #pragma GCC optimize("conserve-stack")
// Old judges
// #pragma GCC target("sse4.2,popcnt,lzcnt,abm,mmx,fma,bmi,bmi2")
// New judges. Test with assert(__builtin_cpu_supports("avx2"));
// #pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma,tune=native")
// Atcoder
// #pragma GCC target("avx2,popcnt,lzcnt,abm,bmi,bmi2,fma")
/*
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> ordered_set;
- insert(x),erase(x)
- find_by_order(k): return iterator to the k-th smallest element
- order_of_key(x): the number of elements that are strictly smaller
*/
#include<bits/stdc++.h>
using namespace std;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
uniform_real_distribution<> pp(0.0,1.0);
#define int long long
#define ld long double
#define pii pair<int,int>
#define piii pair<pii,int>
#define mpp make_pair
#define fi first
#define se second
const int inf=1e18;
const int mod=998244353;
const int maxn=200005;
const int bl=650;
const int maxs=655;
const int maxm=200005;
const int maxq=1000005;
const int maxl=20;
const int maxa=1000000;
const int root=3;
int power(int a,int n){
int res=1;
while(n){
if(n&1) res=res*a%mod;
a=a*a%mod;n>>=1;
}
return res;
}
const int iroot=power(3,mod-2);
const int base=101;
void solve(){
int a,b,c,d;cin >> a >> b >> c >> d;
int res=max({min(a,b)*min(c,d),min(a,c)*min(b,d),min(a,d)*min(b,c)});
cout << res << '\n';
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);cout.tie(NULL);
int test=1;//cin >> test;
while(test--) solve();
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3616kb
input:
2 2 4 7
output:
8
result:
ok 1 number(s): "8"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3736kb
input:
10 10 10 10
output:
100
result:
ok 1 number(s): "100"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
1 1 1 1
output:
1
result:
ok 1 number(s): "1"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
1 1 2 2
output:
2
result:
ok 1 number(s): "2"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3764kb
input:
4 5 5 5
output:
20
result:
ok 1 number(s): "20"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
7 10 12 12
output:
84
result:
ok 1 number(s): "84"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
13 22 32 34
output:
416
result:
ok 1 number(s): "416"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3740kb
input:
9 41 75 93
output:
675
result:
ok 1 number(s): "675"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
31 59 97 98
output:
3007
result:
ok 1 number(s): "3007"
Test #10:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
16 33 48 52
output:
768
result:
ok 1 number(s): "768"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
14 49 52 73
output:
728
result:
ok 1 number(s): "728"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
50 88 90 94
output:
4500
result:
ok 1 number(s): "4500"
Test #13:
score: 0
Accepted
time: 0ms
memory: 3800kb
input:
65 85 94 98
output:
6110
result:
ok 1 number(s): "6110"
Test #14:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
86 86 89 95
output:
7654
result:
ok 1 number(s): "7654"
Test #15:
score: 0
Accepted
time: 0ms
memory: 3748kb
input:
95 97 97 100
output:
9215
result:
ok 1 number(s): "9215"
Test #16:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
98 99 99 99
output:
9702
result:
ok 1 number(s): "9702"
Test #17:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
99 100 100 100
output:
9900
result:
ok 1 number(s): "9900"
Test #18:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
100 100 100 100
output:
10000
result:
ok 1 number(s): "10000"
Test #19:
score: 0
Accepted
time: 0ms
memory: 3748kb
input:
99 99 99 100
output:
9801
result:
ok 1 number(s): "9801"
Test #20:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
99 99 100 100
output:
9900
result:
ok 1 number(s): "9900"
Test #21:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
1 100 100 100
output:
100
result:
ok 1 number(s): "100"
Test #22:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
1 1 100 100
output:
100
result:
ok 1 number(s): "100"
Test #23:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
1 1 1 100
output:
1
result:
ok 1 number(s): "1"
Test #24:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
2 100 100 100
output:
200
result:
ok 1 number(s): "200"
Test #25:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
2 2 100 100
output:
200
result:
ok 1 number(s): "200"
Test #26:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
2 2 2 100
output:
4
result:
ok 1 number(s): "4"
Test #27:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
15 16 23 42
output:
345
result:
ok 1 number(s): "345"
Test #28:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
91 93 95 97
output:
8645
result:
ok 1 number(s): "8645"
Test #29:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
9 13 82 86
output:
738
result:
ok 1 number(s): "738"
Test #30:
score: 0
Accepted
time: 0ms
memory: 3740kb
input:
9 73 82 86
output:
738
result:
ok 1 number(s): "738"
Test #31:
score: 0
Accepted
time: 0ms
memory: 3660kb
input:
9 13 22 86
output:
198
result:
ok 1 number(s): "198"
Test #32:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
2 3 5 100
output:
10
result:
ok 1 number(s): "10"
Test #33:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
5 5 5 100
output:
25
result:
ok 1 number(s): "25"
Extra Test:
score: 0
Extra Test Passed