結果
問題 | No.306 さいたま2008 |
ユーザー | startcpp |
提出日時 | 2015-11-27 22:57:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 763 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 79,552 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 00:16:59 |
合計ジャッジ時間 | 7,524 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:40:21: warning: format ‘%f’ expects argument of type ‘double’, but argument 2 has type ‘long double’ [-Wformat=] 40 | printf("%.12f\n", pos); | ~~~~^ ~~~ | | | | | long double | double | %.12Lf main.cpp:33:46: warning: ‘pos’ may be used uninitialized in this function [-Wmaybe-uninitialized] 33 | for( double y = pos - 0.01; y <= pos + 0.01; y += 2 * 1e-8 ){ | ~~~~^~~~~~
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <functional> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #define double long double using namespace std; int main() { double x1, y1; double x2, y2; cin >> x1 >> y1; cin >> x2 >> y2; double pos, mind = 114514; for( double y = min(y1, y2); y <= max(y1, y2); y += 1e-4 ){ double d = hypot(x1, y1 - y) + hypot(x2, y2 - y); if( d < mind ){ mind = d; pos = y; } } for( double y = pos - 0.01; y <= pos + 0.01; y += 2 * 1e-8 ){ double d = hypot(x1, y1 - y) + hypot(x2, y2 - y); if( d < mind ){ mind = d; pos = y; } } printf("%.12f\n", pos); return 0; }