結果
問題 | No.456 Millions of Submits! |
ユーザー | pekempey |
提出日時 | 2016-12-07 22:11:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 629 bytes |
コンパイル時間 | 1,566 ms |
コンパイル使用メモリ | 165,852 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 02:27:21 |
合計ジャッジ時間 | 6,809 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | OLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int m; cin >> m; double maxi = exp(10); while (m--) { int a, b; double t; scanf("%d %d %lf", &a, &b, &t); double logT = log(t); double ok = maxi; double ng = 1; for (int ii = 0; ii < 50; ii++) { double mid = (ok + ng) / 2; double logN = log(mid); double loglogN = log(logN); if (a * logN + b * loglogN >= logT) { ok = mid; } else { ng = mid; } } printf("%.20f\n", ok); } }