QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#139484 | #5253. Denormalization | tselmegkh# | WA | 1ms | 3564kb | C++20 | 1.5kb | 2023-08-13 18:01:37 | 2023-08-13 18:01:40 |
Judging History
answer
#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <iomanip>
using namespace std;
const int N = 2e5 + 5, inf = 1e9;
const double e = 1e-11;
#define pb push_back
#define mp make_pair
#define ll long long
#define ff first
#define ss second
#define all(a) a.begin(),a.end()
#define sz(x) (int)x.size()
typedef vector<int> vi;
typedef pair<int,int> ii;
typedef vector<ii> vii;
void solve(){
int n;
cin >> n;
vector<double> a(n);
double mx = 0;
int ind = 0;
for(int i = 0; i < n; i++){
cin >> a[i];
}
for(int i = 1; i <= 10000; i++){
double d = i / a[0];
bool b = 1;
for(int j = 1; j < n; j++){
int tmp = a[j] * d;
if(a[j] * d - tmp > e && ((double)(tmp) + 1 - a[j] * d) > e){
b = 0;
break;
}
}
if(b == 1){
cout << i << '\n';
for(int j = 1; j < n; j++){
int tmp = a[j] * d;
if(double(tmp + 1) - a[j] * d <= e)
cout << tmp + 1 << ' ';
else{
cout << tmp << ' ';
}
}
return;
}
}
return;
}
int main(){
int t = 1;
while(t--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3564kb
input:
2 0.909840249060 0.414958698174
output:
result:
wrong output format Unexpected end of file - int32 expected