QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#545484 | #9136. Exponent Calculator | pengpeng_fudan# | WA | 0ms | 3956kb | C++23 | 771b | 2024-09-03 13:54:47 | 2024-09-03 13:54:47 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define maxn 200005
int a[maxn];
void solve(void) {
int n = 8;
cout << 3 * n + 1 << endl;
for (int i = 1; i <= n; i++) cout << "$" << i << " = $0 * $" << i - 1 << endl;
for (int i = 1; i <= n; i++) {
long double frac = 1;
for (int j = 1; j <= i + 1; j++) frac /= j;
cout << "$" << i << " = $" << i << " * " << fixed << frac << endl;
}
cout << "$0 = $0 + 1" << endl;
for (int i = 1; i <= n; i++) cout << "$0 = $0 + $" << i << endl;
return;
}
int main() {
ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
cout << setprecision(20);
int _ = 1;
while (_--) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3956kb
input:
input
output:
25 $1 = $0 * $0 $2 = $0 * $1 $3 = $0 * $2 $4 = $0 * $3 $5 = $0 * $4 $6 = $0 * $5 $7 = $0 * $6 $8 = $0 * $7 $1 = $1 * 0.50000000000000000000 $2 = $2 * 0.16666666666666666667 $3 = $3 * 0.04166666666666666667 $4 = $4 * 0.00833333333333333333 $5 = $5 * 0.00138888888888888889 $6 = $6 * 0.0001984126984126...
result:
wrong answer x=-20,jury=2.06115e-09,participant=1,error=4.85165e+08