結果
問題 | No.105 arcの六角ボルト |
ユーザー | 0w1 |
提出日時 | 2016-11-29 15:35:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 460 bytes |
コンパイル時間 | 1,341 ms |
コンパイル使用メモリ | 166,532 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-05-05 15:14:15 |
合計ジャッジ時間 | 1,838 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> using namespace std; signed main(){ int T; cin >> T; for( int kase = 0; kase < T; ++kase ){ double ans = 1e9; for( int i = 0; i < 6; ++i ){ double X, Y; cin >> X >> Y; if( X == 0 ) continue; double rad = atan( Y / X ); double deg = rad * 180.0 / acos( -1.0 ); if( deg >= 0.0 ) ans = min( ans, deg ); } cout << fixed << setprecision( 7 ) << ans << endl; } return 0; }