結果
問題 | No.105 arcの六角ボルト |
ユーザー | kotatsugame |
提出日時 | 2019-07-21 05:14:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 334 bytes |
コンパイル時間 | 658 ms |
コンパイル使用メモリ | 79,104 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-06-10 22:26:56 |
合計ジャッジ時間 | 1,324 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 8 | main() | ^~~~
ソースコード
#include<iostream> #include<cmath> #include<algorithm> #include<iomanip> using namespace std; int N; double r[6]; main() { cin>>N; for(int i=0;i<N;i++) { for(int j=0;j<6;j++) { double x,y;cin>>x>>y; r[j]=atan2(y,x); if(r[j]<0)r[j]+=2*M_PI; } sort(r,r+6); cout<<fixed<<setprecision(10)<<r[0]*180/M_PI<<endl; } }