結果
問題 | No.456 Millions of Submits! |
ユーザー | yosupot |
提出日時 | 2016-12-07 22:51:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
OLE
|
実行時間 | - |
コード長 | 1,222 bytes |
コンパイル時間 | 999 ms |
コンパイル使用メモリ | 96,500 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 03:07:42 |
合計ジャッジ時間 | 7,791 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 6 ms
5,376 KB |
testcase_08 | AC | 6 ms
5,376 KB |
testcase_09 | AC | 38 ms
5,376 KB |
testcase_10 | AC | 40 ms
5,376 KB |
testcase_11 | AC | 369 ms
5,376 KB |
testcase_12 | OLE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:52:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 52 | scanf("%d", &m); | ~~~~~^~~~~~~~~~ main.cpp:55:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 55 | scanf("%d %d %lf", &a, &b, &t); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <iomanip> #include <cstdio> #include <cstdlib> #include <cstring> #include <cassert> #include <algorithm> #include <numeric> #include <random> #include <vector> #include <array> #include <bitset> #include <queue> #include <set> #include <unordered_set> #include <map> #include <unordered_map> using namespace std; using ll = long long; using ull = unsigned long long; constexpr ll TEN(int n) { return (n==0) ? 1 : 10*TEN(n-1); } int bsr(int x) { return 31 - __builtin_clz(x); } const double E = exp(double(1)); double get(int a, int b, double x) { return pow(x, a)*pow(log(x), b); } double calc(int a, int b, double t) { if (a == 0) { return pow(E, pow(t, 1.0/b)); } if (b == 0) { return pow(t, 1.0/a); } double l = 1, r = 101; for (int i = 0; i < 40; i++) { double md = (l+r)/2; double x = get(a, b, md); if (x < t) { l = md; } else { r = md; } } return l; } int main() { int m; scanf("%d", &m); for (int i = 0; i < m; i++) { int a, b; double t; scanf("%d %d %lf", &a, &b, &t); printf("%.20lf\n", calc(a, b, t)); } return 0; }