結果
| 問題 |
No.105 arcの六角ボルト
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-01-28 13:06:29 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 43 ms / 5,000 ms |
| コード長 | 1,252 bytes |
| コンパイル時間 | 3,740 ms |
| コンパイル使用メモリ | 317,072 KB |
| 実行使用メモリ | 6,816 KB |
| 最終ジャッジ日時 | 2025-01-28 13:06:34 |
| 合計ジャッジ時間 | 4,672 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
// #define int long long
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<typename T>
using ordered_set = tree<T, null_type, std::less<T>, rb_tree_tag, tree_order_statistics_node_update>;
// std::cout << *s.find_by_order(1) << std::endl; // 2
vector<string> split(string str, char del) {
int first = 0;
int last = str.find_first_of(del);
vector<string> result;
while (first < str.size()) {
result.push_back(str.substr(first, last - first));
first = last + 1;
last = str.find_first_of(del, first);
if (last == string::npos) last = str.size();
}
return result;
}
signed main(){
// これがないと落ちることがある
ios_base::sync_with_stdio(false);
cin.tie(0);
ll t;
cin >> t;
for (ll iii = 0; iii < t; iii++){
ld ma = 1e18;
vector<pair<ld,ld>> xy(6);
for (ll i = 0; i < 6; i++){
cin >> xy[i].first>>xy[i].second;
if(xy[i].first>0.4&&asin(xy[i].second)>-0.0001){
ma = min(ma, asin(xy[i].second));
}
}
cout <<fixed<<setprecision(20)<< ma/M_PI*180 << endl;
}
}