結果
問題 | No.105 arcの六角ボルト |
ユーザー | mayoko_ |
提出日時 | 2014-12-16 23:37:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 755 bytes |
コンパイル時間 | 798 ms |
コンパイル使用メモリ | 73,404 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-06-11 22:02:03 |
合計ジャッジ時間 | 1,387 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ソースコード
#include <sstream> #include <string> #include <vector> #include <map> #include <algorithm> #include <iostream> #include <utility> #include <set> #include <cctype> #include <queue> #include <stack> #include <cstdio> #include <cstdlib> #include <cmath> #define INF 1000000000 using namespace std; typedef long long ll; int main(void) { int T; cin >> T; while (T--) { double x[6]; double y[6]; double ret = 0; for (int i = 0; i < 6; i++) { cin >> x[i] >> y[i]; double ans = acos(x[i]); ans = ans / M_PI * 180; if (0 <= ans && ans <= 50 && y[i] >= 0) ret = ans; } printf("%.10lf\n", ret); } return 0; }