結果
問題 | No.105 arcの六角ボルト |
ユーザー | naimonon77 |
提出日時 | 2015-10-04 18:42:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 802 bytes |
コンパイル時間 | 605 ms |
コンパイル使用メモリ | 73,564 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-07-19 19:35:04 |
合計ジャッジ時間 | 1,411 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:38:18: warning: ‘x’ may be used uninitialized in this function [-Wmaybe-uninitialized] 38 | e[i] = acos(x); | ~~~~^~~
ソースコード
#define _USE_MATH_DEFINES #include <cmath> #include <iostream> #include <vector> #include <string> #include <cstring> #include <algorithm> #include <sstream> #include <map> #include <set> #include <cstdio> using namespace std; #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) typedef long long ll; typedef unsigned long long ull; typedef long double ld; /* ここからが本編 */ /* */ /* 入力開始! */ /* 入力終了! */ int main(void) { int i,j; double tmp_x,tmp_y; double x; double e[5005]; int n; cin >> n; rep(i,n) { rep(j,6) { cin >> tmp_x >> tmp_y; if(0 <=tmp_y && tmp_y <= sin((double)tmp_x) && tmp_x >= 0) x = tmp_x; } e[i] = acos(x); } rep(i,n) printf("%f\n",e[i]*180/M_PI); return 0; }