QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#545789 | #9136. Exponent Calculator | pengpeng_fudan# | AC ✓ | 0ms | 3876kb | C++20 | 824b | 2024-09-03 17:16:58 | 2024-09-03 17:16:58 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
void solve(void) {
int n = 4, k = 2048;
cout << 25 << endl;
cout << "$0 = $1 * " << fixed << 1. / k << endl;
for (int i = 1; i <= n; i++) cout << "$" << i << " = $0 * $" << i - 1 << endl;
for (int i = 1; i <= n; i++) {
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;
for (int i = 2; i <= k; i *= 2) cout << "$0 = $0 * $0" << endl;
return;
}
int main() {
//ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
cout << setprecision(15);
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3876kb
input:
input
output:
25 $0 = $1 * 0.000488281250000 $1 = $0 * $0 $2 = $0 * $1 $3 = $0 * $2 $4 = $0 * $3 $1 = $1 * 0.500000000000000 $2 = $2 * 0.166666666666667 $3 = $3 * 0.041666666666667 $4 = $4 * 0.008333333333333 $0 = $0 + 1 $0 = $0 + $1 $0 = $0 + $2 $0 = $0 + $3 $0 = $0 + $4 $0 = $0 * $0 $0 = $0 * $0 $0 = $0 * $0 $0...
result:
ok max relative diff is 3.42876e-12. Checker runtime is 186 ms
Extra Test:
score: 0
Extra Test Passed