QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#516201 | #9136. Exponent Calculator | arnold518# | AC ✓ | 0ms | 3616kb | C++17 | 757b | 2024-08-12 14:27:20 | 2024-08-12 14:27:21 |
Judging History
answer
#include <bits/stdc++.h>
#define ff first
#define ss second
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
int K=15;
double f(double x)
{
x/=(1<<K);
double a=1+x;
double b=a+2;
b=b*x;
b=b*x;
b=b/6;
a=a+b;
for(int i=0; i<K; i++) a=a*a;
return a;
}
int main() {
cin.tie(0); ios_base::sync_with_stdio(0);
cout << "23\n";
cout << "$1 = $1 * 0.0000152587890625\n";
cout << "$0 = 1 + $1\n";
cout << "$2 = $0 + 2\n";
cout << "$2 = $2 * $1\n";
cout << "$2 = $2 * $1\n";
cout << "$2 = $2 * 0.16666666666666667\n";
cout << "$0 = $0 + $2\n";
for(int i=0; i<16; i++) cout << "$0 = $0 * $0\n";
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3616kb
input:
input
output:
23 $1 = $1 * 0.0000152587890625 $0 = 1 + $1 $2 = $0 + 2 $2 = $2 * $1 $2 = $2 * $1 $2 = $2 * 0.16666666666666667 $0 = $0 + $2 $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:
ok max relative diff is 4.19986e-11. Checker runtime is 149 ms
Extra Test:
score: 0
Extra Test Passed