QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#139495#5253. Denormalizationtselmegkh#WA 0ms3628kbC++201.5kb2023-08-13 18:29:082023-08-13 18:29:08

Judging History

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

  • [2023-08-13 18:29:08]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3628kb
  • [2023-08-13 18:29:08]
  • 提交

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);

    for(int i = 0; i < n; i++){
        cin >> a[i];
        a[i] *= 1e12;
    }
    
    for(int i = 1; i <= 10000; i++){
        bool b = 1;
        for(int j = 1; j < n; j++){
            int tmp = a[j] * i / a[0];
            if(a[j] * i / a[0] - tmp > e && ((double)(tmp) + 1 - a[j] * i / a[0]) > e){
                b = 0;
                break;
            }
        }
        if(b == 1){
            cout << i << '\n';
            for(int j = 1; j < n; j++){
                int tmp = a[j] * i / a[0];
                if(double(tmp + 1) - a[j] * i / a[0] <= e) 
                    cout << tmp + 1 << '\n';
                else{
                    cout << tmp << '\n';
                }
            }
            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: 0ms
memory: 3628kb

input:

2
0.909840249060
0.414958698174

output:


result:

wrong output format Unexpected end of file - int32 expected