QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#516201#9136. Exponent Calculatorarnold518#AC ✓0ms3616kbC++17757b2024-08-12 14:27:202024-08-12 14:27:21

Judging History

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

  • [2024-08-12 14:27:21]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3616kb
  • [2024-08-12 14:27:20]
  • 提交

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