結果
問題 | No.105 arcの六角ボルト |
ユーザー | data9824 |
提出日時 | 2015-06-01 03:35:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 73 ms / 5,000 ms |
コード長 | 656 bytes |
コンパイル時間 | 721 ms |
コンパイル使用メモリ | 70,616 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-07-06 13:06:13 |
合計ジャッジ時間 | 1,321 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ソースコード
#include <iostream> #include <iomanip> #include <algorithm> #include <cmath> using namespace std; const double PI = acos(-1); double angle(const double x[], const double y[]) { const double MAX_ERROR = 1e-6; double theta[6]; for (int i = 0; i < 6; ++i) { theta[i] = fmod(atan2(y[i], x[i]) + MAX_ERROR + 2 * PI, 2 * PI); } sort(&theta[0], &theta[5] + 1); return (theta[0] - MAX_ERROR) * 180 / PI; } int main() { int t; cin >> t; for (int i = 0; i < t; ++i) { double x[6], y[6]; for (int k = 0; k < 6; ++k) { cin >> x[k] >> y[k]; } double result = angle(x, y); cout << fixed << setprecision(12) << result << endl; } return 0; }