QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#749258 | #9136. Exponent Calculator | ucup-team134 | WA | 0ms | 3892kb | C++14 | 879b | 2024-11-14 23:13:59 | 2024-11-14 23:14:00 |
Judging History
answer
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
#define f first
#define s second
#define sz(x) (int)(x).size()
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define ios ios_base::sync_with_stdio(false);cin.tie(NULL)
#define ld long double
#define li __int128
using namespace std;
mt19937 rng(time(NULL));
int main()
{
cout << 25 << endl;
int b=20;
printf("$1 = $1 * %.20Lf\n",(ld)1/(1<<b));
ld f=0.5;
printf("$2 = $1 + 1\n");
printf("$3 = $1 * $1\n");
printf("$4 = $3 * %.20Lf\n",f);
printf("$0 = $2 + $4\n");
int K=2;
for(int k=3;k<=K;k++){
f/=k;
printf("$3 = $3 * $1\n");
printf("$4 = $3 * %.20Lf\n",f);
if(k==K){
printf("$0 = $2 + $4\n");
}
else{
printf("$2 = $2 + $4\n");
}
}
for(int i=0;i<b;i++){
printf("$0 = $0 * $0\n");
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3892kb
input:
input
output:
25 $1 = $1 * 0.00000095367431640625 $2 = $1 + 1 $3 = $1 * $1 $4 = $3 * 0.50000000000000000000 $0 = $2 + $4 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $...
result:
wrong answer x=-20,jury=2.06115e-09,participant=2.06115e-09,error=1.23966e-09