結果
問題 | No.1042 愚直大学 |
ユーザー | KY2001 |
提出日時 | 2020-05-01 22:04:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,570 bytes |
コンパイル時間 | 3,985 ms |
コンパイル使用メモリ | 200,588 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-07 08:50:23 |
合計ジャッジ時間 | 5,962 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include "bits/stdc++.h" #define int long long #define FOR(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(obj) begin(obj), end(obj) #define MAX(x) *max_element(ALL(x)) #define MIN(x) *min_element(ALL(x)) #define LOWER_BOUND(A, key) distance(A.begin(), lower_bound(ALL(A), key)) #define UPPER_BOUND(A, key) distance(A.begin(), upper_bound(ALL(A), key)) using namespace std; using ll = long long; const int MOD = (int)(1e9 + 7); const int INF = (int)(1e13 + 7); int ceil_(int a, int b) { return (a + (b - 1)) / b; } int bpm(int x, unsigned int y) { if (x == 0) return 0; if (y == 0) return 1; int ans = 1; int digit = (int)((log((double)y) / log((double)2) / 1 + 1)); x %= MOD; for (unsigned int i = 0; i < digit; i++) { if (((y >> i) & 1u) == 1) ans = ans * x % MOD; x = x * x % MOD; } return ans; } template <class T> void cumulative_sum(T container) { for (int i = 0; i < container.size() - 1; i++) container[i + 1] += container[i]; } bool judge(double N, double P, double Q) { return P + Q * N * log2(N) >= N * N; } double bisect(double L, double R, double P, double Q) { double mid = (L + R) / 2; if (judge(mid, P, Q) and not judge(mid + 0.00001, P, Q)) { return mid; } else if (judge(mid, P, Q) and judge(mid + 0.00001, P, Q)) { return bisect(mid, R, P, Q); } else { return bisect(L, mid, P, Q); } } signed main() { double P, Q; cin >> P >> Q; cout << fixed << setprecision(10) << bisect(0, (double)bpm(10, 17), P, Q) << endl; }