QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#139475 | #5253. Denormalization | tselmegkh# | WA | 1ms | 3680kb | C++20 | 1.2kb | 2023-08-13 17:27:04 | 2023-08-13 17:27:06 |
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++){
if(abs(a[j] * d - (int)(a[j] * d)) > e){
b = 0;
break;
}
}
if(b == 1){
cout << i << '\n';
for(int j = 1; j < n; j++){
cout << (int)(a[j] * d) << '\n';
}
return;
}
}
return;
}
int main(){
int t = 1;
while(t--){
solve();
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3680kb
input:
2 0.909840249060 0.414958698174
output:
result:
wrong output format Unexpected end of file - int32 expected