QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#516183#9136. Exponent Calculatorarnold518#WA 1ms3636kbC++17750b2024-08-12 14:11:462024-08-12 14:11:46

Judging History

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

  • [2024-08-12 14:11:46]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3636kb
  • [2024-08-12 14:11:46]
  • 提交

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 << "22\n";
    cout << "$1 = $1 * 0.000030518\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<15; i++) cout << "$0 = $0 * $0\n";
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3636kb

input:

input

output:

22
$1 = $1 * 0.000030518
$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 = $0 * $0
...

result:

wrong answer x=-20,jury=2.06115e-09,participant=2.06058e-09,error=0.000276442