結果
問題 | No.456 Millions of Submits! |
ユーザー | はむこ |
提出日時 | 2016-11-27 23:16:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,737 bytes |
コンパイル時間 | 1,317 ms |
コンパイル使用メモリ | 158,300 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 01:06:07 |
合計ジャッジ時間 | 6,534 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:21:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 21 | int m; scanf("%d", &m); | ~~~~~^~~~~~~~~~ main.cpp:24:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 24 | int a, b; scanf("%d%d", &a, &b); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:25:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 25 | Double t; scanf("%f", &t); | ~~~~~^~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(long long i = 0; i < (long long)(n); i++) #define pb push_back #define all(x) (x).begin(), (x).end() template<class T1, class T2> bool chmin(T1 &a, T2 b) { return b < a && (a = b, true); } template<class T1, class T2> bool chmax(T1 &a, T2 b) { return a < b && (a = b, true); } template <typename T, typename U> ostream &operator<<(ostream &o, const pair<T, U> &v) { o << "(" << v.first << ", " << v.second << ")"; return o; } template <typename T> ostream &operator<<(ostream &o, const vector<T> &v) { if (!v.empty()) { o << '['; copy(v.begin(), v.end(), ostream_iterator<T>(o, ", ")); o << "\b\b]"; } return o; } using ll = long long; using vll = vector<ll>; using vi = vector<int>; typedef pair<ll, ll> P; static const double EPS = 1e-14; static const long long INF = 1e18; #define MAX_N 100005 typedef float Double; int main(void) { int m; scanf("%d", &m); Double maxerr = -INF; rep(i, m) { int a, b; scanf("%d%d", &a, &b); Double t; scanf("%f", &t); // cout << a << " " << b << " " << t << endl; if (!a) { // cout << "a=0" << endl; printf("%.12f\n", exp(pow(t, 1.0 / b))); continue; } if (!b) { // cout << "b=0" << endl; printf("%.12f\n", pow(t, 1.0 / a)); continue; } Double rl = 1e-12; Double rr = 11; rep(i, 30) { Double m = (rl + rr) / 2; (pow(m, a) * pow(log(m), b) - t > 0) ? rr = m : rl = m; } Double n = rl; printf("%.10f\n", n); // Double err = pow(n, a) * pow(log(n), b) - t; // cout << err << endl; } return 0; }