QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#139481 | #5259. Skills in Pills | tselmegkh# | WA | 1ms | 3560kb | C++20 | 1.2kb | 2023-08-13 17:39:07 | 2023-08-13 17:39:11 |
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;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3560kb
input:
3 9 20
output:
9 20 0
result:
wrong answer 1st lines differ - expected: '8', found: '9'