結果
| 問題 | 
                            No.105 arcの六角ボルト
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2015-06-10 22:55:24 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 259 bytes | 
| コンパイル時間 | 1,309 ms | 
| コンパイル使用メモリ | 158,692 KB | 
| 実行使用メモリ | 6,812 KB | 
| 最終ジャッジ日時 | 2024-07-06 15:27:31 | 
| 合計ジャッジ時間 | 1,778 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 1 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int t;cin>>t;
for(int i=0;i<t;i++){
double mi = 10000;
for(int j =0;j<6;j++){
double x,y;cin>>x>>y;
double th = atan2(y, x);
if (th >=0) mi = min(mi, th);
}
printf("%.9fn",  mi * 180.0 / acos(-1));
}
}